-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
162 lines (153 loc) · 5.62 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en">
<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" />
<link rel="stylesheet" href="style.css" />
<title>my personal home page</title>
</head>
<body>
<header class="header">
<nav class="navbar">
<a href="#" class="nav-logo">P.M.M</a>
<ul class="nav-menu">
<li class="nav-item">
<a href="#" class="nav-link">HOME</a>
</li>
<li class="nav-item">
<a href="#aboutme" class="nav-link">ABOUT</a>
</li>
<li class="nav-item">
<a href="#myalbum" class="nav-link">ALBUM</a>
</li>
<li class="nav-item">
<a href="#contactMe" class="nav-link">CONTACT</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</nav>
<div class="text-box">
<h1>Salut! Hello! My name is Patou</h1>
<img class="circle_img" src="https://i.pinimg.com/564x/de/81/a1/de81a1127fcec9f99571c21d04e18961.jpg"
alt="logo" />
<p>
It's never too late to be what you might have been.<br />( Mary-Anne
Evans )
</p>
</div>
</header>
<section id="aboutme">
<div class="container">
<h2>ABOUT</h2>
<p>
I am a reliable, hard worker, adaptable, self-motivated person, a open
mind person who welcome the chance to obtain new skills, man of many
caps who love tech and have a great passion to help people.
</p>
</div>
<div class="bhist">
<div class="mbh">
<h3>MY BRIEF HISTORY</h3>
<p>
Growing up,I was a child who wanted to always know how things
(radio, TV, stove, electrical installation) works and how to fixe
it. 15years old, I went to technical highschool and i got my
matric. Later on, I got a bachelor degree in Electromechanical
engeneering which I didn't have yet chance to work in that filed.
</p>
</div>
<div class="mbh">
<h3>MY LIFE IN SOUTH AFRICA</h3>
<p>
Refugee in South Africa 2014,my passion to help people lead me to
work as a volunteer C.A.T(community action team) at Sonke Gender
Justice to prevent domestic and sexual violence, reduce the spread
and impact of HIV and AIDS and promote gender equality and human
rights in my community.
</p>
</div>
<div class="mbh">
<h3>GLIMMER OF HOPE</h3>
<p>
Unemployed struggling to get a job of my qualification and limit
other site to do public work in my community because of the
pandemic, i discovered CodeYourFuture via social media and I fall in
love with coding, like a sun rising,CodeYourFuture bring light into my
heart to change my career as a Professional Developer to support my
family and continue to help my community now with large extension by
keeping them safe physically, emotionally and financially with this
new tools(Coding).
</p>
</div>
</div>
</section>
<section id="myalbum">
<div class="container">
<h2>MY ALBUM</h2>
<div class="imgbox">
<img src="https://i.pinimg.com/564x/81/98/73/8198730cfebf5e56da35aa8f2e0671c2.jpg" alt="album" />
<p>
My passage at university helped me improve my knowledge, discipline
on studding, diligence, hard-working, good communication skills, team
working, self-motivation and sens of responsibility.
(ISTP/DRC-KINSHASA)
</p>
</div>
<div class="imgbox">
<img src="https://i.pinimg.com/564x/e3/cf/95/e3cf9552b62846b9b2025ac75937f706.jpg" alt="album" />
<p>
Helping and empowering others is one of my passions. I believe that
everyone is entitled to a second chance because change is one of the
commons of human beings.
</p>
</div>
<div class="imgbox">
<img src="https://i.pinimg.com/564x/3a/c2/19/3ac2195c3e604fd8cde5c784736969c6.jpg" alt="album" />
<p>
Code Your Future, my Sun rising of gaining new skills and change a
career
</p>
</div>
</div>
</section>
<section id="contactMe">
<div class="container-contact">
<div class="contact-box">
<div class="left"></div>
<div class="right">
<h2>CONTACT</h2>
<input type="text" class="field" placeholder="Full Name" required />
<input type="text" class="field" placeholder="Email" required />
<input type="text" class="field" placeholder="Telephone" required />
<textarea class="field area" placeholder="Comment" required></textarea>
<button class="btn">Send</button>
</div>
</div>
</div>
</section>
<!-- Footer -->
<section id="footer">
<div class="footer_container">
<div class="social-icon">
<div class="social-item">
<a href="#"><img src="https://img.icons8.com/color/2x/facebook-new.png" alt="item" /></a>
</div>
<div class="social-item">
<a href="#"><img src="https://img.icons8.com/emoji/2x/e-mail.png" alt="item" /></a>
</div>
<div class="social-item">
<a href="#"><img src="https://img.icons8.com/color/2x/linkedin-circled.png" alt="item" /></a>
</div>
</div>
<p>Copyright © 2022 Patou Mabando All rights reserved</p>
</div>
</section>
<!-- End Footer -->
<script src="app.js"></script>
</body>
</html>