-
Notifications
You must be signed in to change notification settings - Fork 33
/
contact.html
63 lines (60 loc) · 2.07 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
<!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>MERLIN FASHION CLUB</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{
font-family: 'Nova Cut', cursive;
color:black;
}
.contact-info{
padding-top:170px;
}
</style>
<body>
<!-- navbar -->
<nav>
<div class="logo">
<h3><a href="merlin.html" class="logo-name">Merlin Fashion</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.html" 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">
<p class="slogan">"Merlin Fashion."</p>
<p class="author">Shivani Singh</p>
<p class="author">shivanisingh260500@gmail.com</p>
<p class="author"><a href="https://www.linkedin.com/in/shivani-singh-86b640192/" class="logo-name">On LinkedIn</a></p>
</div>
</center>
<script type="text/javascript" src="js/nav.js"></script>
</body>
</html>