-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (74 loc) · 4.38 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="description" content="My journey in web development">
<meta name="keywords" content="Web Search Api, Web development">
<meta name="author" content="Hugues Kouakou">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HuguesK | Personal Site</title>
<link rel="icon" href="/images/favicon.png">
<link rel="stylesheet" href="/css/styles.css">
<!-- Google fonts, replace this link with the appropriate one if other fonts are needed-->
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Merriweather&family=Ubuntu&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Arvo" rel="stylesheet">
<!-- Bootstrap - styling-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- Bootstrap icons-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!--nav bar-->
</head>
<body onload="typeWriter()">
<div class="hero">
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="/"><span style="font-family:'Ubuntu', sans-serif;">HuguesK</span><i class="bi bi-amd" style="font-size: 1.5rem;" ></i></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 ms-auto">
<li class="nav-item"><a class="nav-link active" href="/">HOME</a></li>
<li class="nav-item"><a class="nav-link active" href="/about-me">ABOUT</a></li>
<li class="nav-item"><a class="nav-link active" href="/projects">PROJECTS</a></li>
<li class="nav-item"><a class="nav-link active" href="/contact-me">CONTACT</a></li>
</ul>
</div>
</div>
</nav>
<div class="detel">
<div class="intro">
<div class="intro-title">
<h1>Hi There!</h1>
<h1 id="typing-text"></h1>
<p>
This is my official website to show my work in web/app development.
</p>
<img class="photo" src="images/photo.jpg" alt="Avatar" />
</div>
<!--<a href="" download="cv.pdf">DOWNLOAD CV </a>-->
</div>
</div>
</div>
<div class="grid-container">
<div class="item1"><img src="images/technologies/html.png" alt="html" /><h6>Html5</h6></div>
<div class="item2"><img src="images/technologies/css.png" alt="css" /><h6>Css3</h6></div>
<div class="item3"><img src="images/technologies/Js.png" alt="js" /><h6>Js</h6></div>
<div class="item4"><img src="images/technologies/Node.png" alt="Node" /><h6>Node.js</h6></div>
<div class="item5"><img src="images/technologies/react.png" alt="react" /><h6>React.js</h6></div>
<div class="item6"><img src="images/technologies/db.png" alt="db" /><h6>MongoDB</h6></div>
<div class="item7"><img src="images/technologies/sql.png" alt="sql" /><h6>MySQL</h6></div>
<div class="item8"><img src="images/technologies/firebase.png" alt="firebase" /><h6>Firebase</h6></div>
<div class="item9"><img src="images/technologies/flutter.png" alt="flutter" width="50%" height="50%"/><h6>Flutter</h6></div>
</div>
<div class="certificates">
<h3>My Certifications</h3>
<a href="certificates/certificate1_webdev.pdf" style="color: orange;" target="_blank"><b>Web Development</b></a><br />
<a href="certificates/certificate2_flutter.pdf" style="color: orange;" target="_blank"><b>Flutter Development</b></a>
</div>
<!-- Bootstrap Js-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<!-- dom Js file-->
<script type="text/javascript" src="DomJs/jsdom.js"></script>
</body>
</html>