-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (75 loc) · 2.92 KB
/
index.html
File metadata and controls
79 lines (75 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tea Shop</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="scripts.js"></script>
</head>
<body>
<div class="navbar">
<a class="active" href="#home"><i class="fa fa-fw fa-home"></i> Home</a>
<a href="#contact"><i class="fa fa-fw fa-envelope"></i> Contact</a>
<a href="#about"><i class="fa fa-fw fa-user"></i> about</a>
</div>
<section id="home">
<div class="inner-width">
<div class="content">
<h1><span>c</span>hitkara<br>tea<span>shop</span></h1>
<p>Let's Sit relax and enjoy our Chai!</p>
<button><a href="product.html">Order Now</a></button>
</div>
</div>
</section>
<section id="about">
<div class="container">
<h1><span>o</span>ur stor<span>y</span></h1>
<p>we are a team of 4 members Shubham Sumit Sahil And Nitish from chitkara university working on a project.</p>
<a href="https://mail.google.com/mail/u/0/#inbox?compose=GTvVlcRzDQzCCkLfbDjwcsWjhPcKcDcLrcjzXzRKMBZcJpsVLxRqsbmtwXwSHrVfTvjzVNkRHSnNt" class="button"><button>contact us</a></button>
</div>
</section>
<section id="contact">
<div class="contact">
<h1><span>c</span>ontac<span>t</span></h1>
<div class="container-items">
<div class="items">
<div class="item">
<input type="text" placeholder="Your Name">
</div>
<div class="item">
<input type="text" placeholder="Your Email">
</div>
<div class="item">
<textarea placeholder="Message"></textarea>
<a href="#" class="button"><button>send</button></a>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="row">
<div class="cl">
<div class="copyright">
<div class="logo-footer"><i class="fas fa-seedling"></i></div>
<p>Made With Love By Shubham and Sumit</p>
</div>
</div>
<div class="cl">
<div class="adress">Chitkara University<br>Himachal Pradesh</div>
<div class="s-m">
<a target="_blank"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/i_am_shubham._raj/" target="_blank"><i class="fab fa-instagram"></i></a>
<a target="_blank"><i class="fab fa-twitter"></i></a>
<a target="_blank"><i class="fab fa-pinterest"></i></a>
</div>
</div>
</div>
</footer>
</body>
</html>