-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.html
55 lines (55 loc) · 1.91 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
<!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/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles.css" />
<title>Web Design Mastery | Responsive Portfolio</title>
</head>
<body>
<nav>
<div class="nav__content">
<div class="logo"><a href="#">Mitchell</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="#">Resume</a></li>
<li><a href="#">Portfolio</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>Mitchell<br />a</span> Web Developer
</h1>
<p class="description">
Welcome to my web developer portfolio! I'm Mitchell, a skilled and
creative web developer with a passion for creating beautiful,
responsive, and user-friendly websites. I've worked on a variety of
web projects, ranging from personal blogs to e-commerce platforms.
</p>
<div class="action__btns">
<button class="hire__me">Hire Me</button>
<button class="portfolio">Portfolio</button>
</div>
</div>
<div class="image">
<img src="assets/profile.jpg" alt="profile" />
</div>
</div>
</section>
</body>
</html>