-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
81 lines (80 loc) · 2.32 KB
/
contact.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Netflix Merch</title>
<link
href="https://fonts.googleapis.com/css?family=Lora:400,700|Montserrat:300"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Chivo:300,700|Playfair+Display:700i"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Beth+Ellen|Nova+Cut&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style_index.css" />
<link rel="stylesheet" href="css/demo.css" />
<link rel="stylesheet" href="css/nav.css" />
<link rel="stylesheet" href="css/categories.css" />
</head>
<style>
.slogan {
font-family: "Beth Ellen", cursive;
color: black;
font-size: 36px;
}
.author {
display: flex;
justify-content: space-around;
color: black;
}
.contact-info {
padding-top: 170px;
}
span {
text-align: center;
}
</style>
<body>
<!-- navbar -->
<nav>
<div class="logo">
<h3><a href="merlin.html" class="logo-name">Netflix Merch</a></h3>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="categories.html">Categories</a></li>
<li><a href="contact.html">ContactUs</a></li>
<li><a href="login.php" id="login">Login</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<!-- navbar -->
<center>
<div class="contact-info footer-3">
<p class="slogan">"Netflix Merch."</p>
<p class="author">
<a href="#">Shubhanshu Bhagat(N214)</a>
<a href="#">Mayank Garg(N228)</a>
<a href="#">Bhavyy Gupta(N235) </a>
</p>
<div class="author">
<span>shubhanshu.bhagat.8@gmail.com</span>
<span>mayankgarg0535@gmail.com</span>
<span>gbhavyy7@gmail.com</span>
</div>
</div>
</center>
<script type="text/javascript" src="js/nav.js"></script>
</body>
</html>