-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
121 lines (109 loc) · 4.2 KB
/
about.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
<!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">
<meta name="description"
content="Hi I'm Khalifa Ababacar BEYE, I'm a Junior Web Developer and here is my portfolio">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<title>Khalifa's Portfolio Website</title>
</head>
<body>
<!-- header -->
<header>
<!-- navigation bar -->
<nav>
<ul>
<!-- Logo -->
<li>
<h1><a href="#"><span class="fa-solid fa-laptop-code" aria-hidden="true"></span> Khalifa Ababacar
BEYE</a></h1>
</li>
<li>
<a href="index.html#projects">Projects</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="index.html#contact">Contact</a>
</li>
<!-- linkedin contact -->
<li>
<a href="https://www.linkedin.com/in/khalifa-ababacar-beye" target='_blank'>
<span class="fa-brands fa-linkedin" aria-hidden="true"></span>
<!-- for screen readers -->
<span class="sr-only">LinkedIn</span>
</a>
</li>
<!-- github contact -->
<li>
<a href="https://www.github.com/oyabun-dev" target='_blank'>
<span class="fa-brands fa-github" aria-hidden="true"></span>
<!-- for screen readers -->
<span class="sr-only">Github</span>
</a>
</li>
<!-- link to my resume -->
<li>
<a href="file.pdf" class="button">Resume</a>
</li>
</ul>
</nav>
</header>
<div class="gradient"></div>
<!-- projects section -->
<section id="about">
<div class="container">
<h2>About Khalifa Ababaca BEYE</h2>
<!-- About Me -->
<article>
<div class="text">
<h3>Just the highlights</h3>
<p class="blackbox">
Persevering, autonomous and dynamic, I am an engineering student at the École Supérieure Polytechnique de Dakar. I am rigorous, productive and curious, which gives me an opening to several fields and ready to take on new challenges.
<h4>My favorite Technologies include:</h4>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>UX/UI</li>
</ul>
</div>
<img src="images/my_photo.jpg" alt="A photo of me" />
</article>
</div>
</section>
<div class="gradient"></div>
<!-- footer -->
<footer>
<h2>Khalifa Ababacar BEYE · Junior Developer</h2>
<nav>
<ul>
<li>
<a href="https://www.linkedin.com/in/khalifa-ababacar-beye">
<span class="fa-brands fa-linkedin" aria-hidden="true"></span>
<span class="sr-only">LinkedIn</span>
</a>
</li>
<li>
<a href="https://www.github.com/oyabun-dev">
<span class="fa-brands fa-square-github" aria-hidden="true"></span>
<span class="sr-only">Github</span>
</a>
</li>
<li>
<a href="mailto:khalifaababacarbeye@esp.sn">
<span class="fa-solid fa-envelope" aria-hidden="true"></span>
<span class="sr-only">Email</span>
</a>
</li>
</ul>
</nav>
<p class="rights"><small> © 2023 Khalifa Ababacar BEYE. All rights reserved.</small></p>
</footer>
</body>
</html>