-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (57 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Link to Font Awesome CSS file -->
<link href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css' rel='stylesheet'>
<!-- Link to custom CSS file -->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Hero Section | @sauravxcode</title>
</head>
<body>
<div class="hero">
<nav>
<!-- Logo -->
<img class="logo" src="assets/img/logo.png" alt="">
<!-- Navigation links -->
<ul class="nav__links">
<li class="nav__item">
<a href="#">Home</a>
</li>
<li class="nav__item">
<a href="#">About Us</a>
</li>
<li class="nav__item">
<a href="#">Services</a>
</li>
<li class="nav__item">
<a href="#">Contact Me</a>
</li>
</ul>
<!-- Call to action button -->
<a href="#" class="cta"><button>Try For Free</button></a>
</nav>
<!-- Hero content -->
<div class="info">
<!-- Main headline -->
<h1>Magic Awaits <br> <span> Explore </span> Now.</h1>
<!-- Sub headline -->
<p>You can read this text, but its doesn't matter. It's concept<br>not important for your life or life of your friends.</p>
<!-- Call to action button -->
<a href="#"><button class="free">Get FREE Consultation</button></a>
</div>
<!-- Image box -->
<div class="img__box">
<!-- 3D Floating image -->
<img class="back-img" src="assets/img/3dimg.png" alt="3d image">
</div>
<!-- Social media links -->
<div class="social-links">
<i class="fa-brands fa-linkedin"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
</div>
</body>
</html>