-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (99 loc) · 4.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&display=swap">
<link rel="stylesheet" href="./src/styles.css">
<title>My portofolio</title>
</head>
<body>
<div class="container">
<header class="header">
<figure>
<img src="./assets/brand-removebg-preview.png" alt="Logo image" class="brand">
</figure>
<img src="./assets/burger-menu.png" alt="hamburger-menu" class="hamburger-menu" id="hamburgerMenu">
<ul class="nav-links" id="navLinks">
<li><a href="./index.html" class="links">Home</a></li>
<li><a href="./src/About.html" class="links">About</a></li>
<li><a href="./src/blog.html" class="links">Blog</a></li>
<li><a href="./src/portfolio.html" class="links">My work</a></li>
<li><a href="./src/skills.html" class="links">Skills</a></li>
<li><a href="./src/contact.html" class="links">Contact</a></li>
<button class="login-btn" id="login"><a href="./src/login.html">Sign In</a></button>
</ul>
<!-- USER PROFILE DISPLAY -->
<div class="profile-display" id="profile">
<p id="names"></p>
<div class="dropdown-arrow" id="arrow">
<i class="fa-solid fa-caret-down" id="dropdown-btn" onclick="toggleDropdown()"></i>
<div id="dropdown-content" class="profile-links">
<div><a href="#" id="logout">Logout</a></div>
<!-- <div><a href="./src/userprofile.html" onclick="populateUserInfo()">Profile</a></div> -->
</div>
</div>
</div>
</header>
<div id="popup-msg">
<p>Logout successful</p>
</div>
<main class="content">
<div class="intro-section">
<p>Hi,My name is</p>
<h2 id="name">Ismael MUREKEZI</h2>
<p class="brief-intro"><span>Software Developer</span> with a passion for crafting engaging digital <br>
experience through intuitive UX/UI Design.Eager to leverage my <br>
skills in HTML,CSS,Javascript to contribute to innovative <br>
projects in the dynamic world of web development</p>
<div class="contact-section">
<p>Get in touch</p>
<div class="social-media-links">
<a href="https://www.linkedin.com/in/murekezi-ismael/"><i class="fa fa-linkedin-square"
aria-hidden="true"></i></a>
<a href="https://github.com/Ismaelmurekezi"><i class="fa fa-github"></i></a>
<a href=""><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
<img src="./assets/profile.png" alt="my-image" class="profile-image">
</main>
<footer class="main-footer">
<div class="footer">
<img src="./assets/real-brand.png" alt="my-logo" id="brand-footer">
<div class="quick-links">
<p class="footer-title">Quick-links</p>
<a href="./portfolio.html">
<p>My work</p>
</a>
<a href="./About.html">
<p>About me</p>
</a>
<a href="./Home.html">
<p>Home</p>
</a>
<a href="./contact.html">
<p>Contact</p>
</a>
</div>
<div>
<p class="footer-title">My platforms</p>
<span class="social-media-links">
<a href="https://www.linkedin.com/in/murekezi-ismael/"><i class="fa fa-linkedin-square"
aria-hidden="true"></i></a>
<a href="https://github.com/Ismaelmurekezi"><i class="fa fa-github"></i></a>
<a href=""><i class="fa fa-twitter"></i></a>
</span>
</div>
</div>
<p class="copyright">copyright © Ismael 2024.All rights reserved.</p>
</footer>
</div>
<script src="https://kit.fontawesome.com/ffd0b0bd60.js" crossorigin="anonymous"></script>
<script src="./src/script.js"></script>
</body>
</html>