-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (82 loc) · 3.15 KB
/
index.html
File metadata and controls
82 lines (82 loc) · 3.15 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
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
<!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">
<title>Dancing | Landing page</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css" integrity="sha512-1sCRPdkRXhBV2PBLUdRb4tMg1w2YPf37qatUFeS7zlBy7jJI8Lf4VHwWfZZfpXtYSLy85pkm9GaYVYMfw5BC1A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="logo">
<img src="./images/white-logo.png" alt="" >
</div>
<nav>
<ul class="list">
<div class="line"></div>
<li class="list-item">Home</li>
<li class="list-item">About Us</li>
<li class="list-item">Portfolio</li>
<li class="list-item">Contact</li>
</ul>
</nav>
<!-- left-section -->
<div class="img-1">
<img src="./images/pexels-rfstudio-3819572.jpg" alt="" width="35%" height="100%">
</div>
<!-- Right-section -->
<div class="right">
<div class="heading">
<h1>Crea </h1>
<div>
<h1>tivity</h1>
<p>is our <br> ingredient.</p>
</div>
<div class="btn-wrapper">
<button>Check Our Package</button>
</div>
</div>
<div class="social-icons">
<img src="./images/twitter-logo-svgrepo-com.svg" alt="twitter" class="icon">
<img src="./images/instagram-svgrepo-com.svg" alt="instagram" class="icon">
<img src="./images/facebook-svgrepo-com.svg" alt="facebook" class="icon">
<img src="./images/email-svgrepo-com (3).svg" alt="mail" class="icon">
</div>
<div class="bottom">
<ul>
<span class="line-dot"></span>
<li class="active-item">
<span class="dot"></span>
<p>Photography</p>
</li>
<li>
<span class="dot"></span>
<p>Videography</p></li>
<li>
<span class="dot"></span>
<p>Graphics Design</p></li>
<li>
<span class="dot"></span>
<p>Illustration</p></li>
<li>
<span class="dot"></span>
<p>Animation</p></li>
</ul>
<div class="bottom-quote">
<span class="quote-icon">
<i class="fa-solid fa-quote-right"></i>
</span>
<p>We help you to create the best graphics,
<br> photos, videos, animations and illustrations
</p>
<div class="img">
<img src="./images/pexels-cottonbro-7974875.jpg" alt="" width="100%">
</div>
<div class="arrow">
<i class="fa-solid fa-arrow-down-long"></i>
</div>
</div>
</div>
</body>
</html>