-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (112 loc) · 4.35 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!--doctype html-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Website</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<!--using FontAwesome-->
<script src="https://kit.fontawesome.com/c8e4d183c2.js" crossorigin="anonymous"></script>
</head>
<body>
<section>
<!--navigation---------------------->
<nav>
<!--logo-->
<a href="#" class="logo">Chwayita Moyeni</a>
<!--menu-->
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact me</a></li>
<li><a href="#">Team</a></li>
</ul>
<!--bars--------------->
<div class="toggle"></div>
</nav>
<!--text----------------------->
<div class="text-container">
<p>Hello,</p>
<p>I’M Chwayita</p>
<p>Bsc Computer Science Student <br>&OutBox Edu Prep_8 Student
<br> Air Traffic Controller <br> Photographer</p>
</div>
<!--model---------------------->
<img alt="model" class="model" src="images/cover.JPG">
</section>
<div class="about-container">
<!--img-->
<img src="images/image.jpg" />
<!--about-me-text-->
<div class="about-text">
<p>About Me</p>
<p>Developer Student,Photography, ATC</p>
<p>Hello,My name is Chwayita Moyeni. I am a student in Bsc Computer Science and OutBox Edu Software Development Bootcamp. and also a self taught Photographer. By Profession I am an Air Traffic Controller working for a company name Air Traffic
and Navigation Services.
</p>
<p>My dream has always been becoming a software developer and I am currently embaking on that jurney.</p>
</div>
</div>
<!--services-container---------------------------->
<div class="services ">
<!--text-->
<div class="services-text ">
<p>Services</p>
<p>Ask Me</p>
<p>if you need any of the services listed below, contact me.</p>
</div>
<div class="box-container">
<!--1------------->
<div class="box-1">
<span>Software Development</span>
<p class="heading">Software Developer in making</p>
<p class="details">if you need my services, contact me</p>
<button>Read More</button>
</div>
<!--2------------->
<div class="box-2">
<span>Fashion Design</span>
<p class="heading">Fashion Designer</p>
<p class="details">if you want any garmet desined, contact me</p>
<button>Read More</button>
</div>
<!--3------------->
<div class="box-3">
<span>ATC</span>
<p class="heading">ATC Services</p>
<p class="details">contact me</p>
<button>Read More</button>
</div>
</div>
</div>
<!--if you have any project in your mind contact me-->
<div class="contact-me">
<p>If You Have Any Project In Your Mind ?</p>
<button>Contact me</button>
</div>
<!--footer--------------->
<footer>
<!--heading-->
<p>Software Development,ATC, Photography & Fashion Designer</p>
<!--paragraph-->
<p>I work hard and make sure I deliver the best services to my customers.</p>
<!--social-->
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
<!--copyright-->
<p class="copyright">Copyright by C Moyeni 2020</p>
</footer>
<!--social-attach-bar-->
<div class="social">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-youtube"></i></a>
</div>
</body>
</html>