-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
54 lines (53 loc) · 2.11 KB
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
<!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 href="https://cdn.jsdelivr.net/npm/remixicon@4.0.0/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Portfolio</title>
</head>
<body>
<nav>
<div class="nav content">
<div class="logo"><a href="#"> Mymunah30 </a></div>
<label for="check" class="checkbox">☰
<i class="ri-menu-line"></i>
</label>
<input type="checkbox" name="check" id="check">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</nav>
<section class="section">
<div class="section_container">
<div class="content">
<p class="subtitle">Hello</p>
<h1 class="title">
I'm <span> Maimunatu <br> </span> a Web developer
</h1>
<p class="description">I'm a third-year Software Engineering student<br>
passionate about web development and UI/UX design. <br>
I'm currently learning HTML, CSS, GitHub, and Canva, <br>
and I enjoy building clean, responsive websites. <br>
This portfolio reflects my learning journey as I grow my skills and <br>
prepare to explore frontend frameworks and data science in the future.
</p>
<div class="action_btns">
<button class="hire_me"> Hire me </button>
<button class="portfolio"> Portfolio </button>
</div>
</div>
<div class="image">
<img src="profile.jpeg" alt="profile">
</div>
</div>
</section>
</body>
</html>