-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.44 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
<!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>Text Animation</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container">
<nav>
<img src="assets/img/logo.png" class="logo" alt="logo" />
<ul>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
<li><a href="">Portfolio</a></li>
</ul>
<img src="assets/img/cart.png" class="cart-icon" alt="cart" />
</nav>
<div class="text-area">
<p>I'M</p>
<h1>WINTER</h1>
<h3>DEVELOPING A BEAUTIFUL WEBSITES</h3>
<div class="contact-area">
<a href="https://github.com/mohit838">Explore My Portfolio</a>
<a href="https://facebook.com/mohit838"
>Connect With me <span>→</span></a
>
<span
>You can explore lot of things <br />when we can connect with
you.</span
>
</div>
</div>
<div class="social-icons">
<a href=""><img src="assets/img/dribble.png" alt="" /></a>
<a href=""><img src="assets/img/instagram.png" alt="" /></a>
<a href=""><img src="assets/img/telegram.png" alt="" /></a>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>