-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (54 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emmy</title>
<!-- icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section id="hero">
<header>
<a class="header-logo">Emmy<span>.</span></a>
<nav>
<a class="nav-item">Home</a>
<a class="nav-item">About</a>
<a class="nav-item">Portfolio</a>
<a class="nav-item">blog</a>
<a class="nav-item">contact</a>
</nav>
<button class="header-btn">Let's Talk</button>
</header>
<div class="content">
<div class="left">
<h3>Hi, I'm Emmy Rose!</h3>
<h1>web <span>designer</span></h1>
<p>
Emmy is a passionate and creative web designer known for crafting visually stunning and user-friendly websites. With a keen eye for design and a deep understanding of modern web development, she transforms ideas into beautifully functional digital experiences.
</p>
<div class="cta-section">
<button class="cta-1">Projects
<i class="fa-solid fa-code"></i>
</button>
<button class="cta-2">Hire me
<i class="fa-solid fa-arrow-up-right-from-square"></i>
</button>
</div>
<div class="social-section">
<i class="fa-brands fa-facebook-f"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-linkedin-in"></i>
</div>
</div>
<div class="right">
<div class="img-wrap">
<img class="hero-img " src="pro-pic.png">
</div>
</div>
</div>
</section>
</body>
</html>