-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
69 lines (61 loc) · 2.37 KB
/
Contact.html
File metadata and controls
69 lines (61 loc) · 2.37 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
<!DOCTYPE html>
<html>
<head>
<meta name ="viewport" content = "width=device-width, initial-scale=1.0">
<title>BrewStop</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,800;1,400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/css/fontawesome.min.css">
<script defer src="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/js/all.min.js"></script>
</head>
<body>
<section class= "header">
<nav>
<a href="index.html"><img src="Images/Brew.png"></a>
<div class="nav-links" id="navLinks">
<i id="timesIcon" class="fa fa-times" onclick="hideMenu()"></i>
<h4>
<li><a href ="index.html" >HOME</a></li>
<li><a href ="Product.html" >PRODUCT</a></li>
<li><a href ="About.html">ABOUT US</a></li>
<li><a href ="Contact.html">CONTACT US</a></li>
</h4>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<div class="text-box">
<p>
</p>
</div>
</section>
<div class="container">
<section class="contact">
<a href="mailto:info@brewstop.co" class="contact-btn">CONTACT US</a>
</section>
<!---- Footer---->
<section class="footer">
<h2>Connect With Us</h2>
<div class="icons">
<a href="https://www.linkedin.com/company/brewstop" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://instagram.com/brewstop.official" target="_blank"><i class="fab fa-instagram"></i></a>
<a href="https://github.com/BrewStop" target="_blank"><i class="fab fa-github"></i></a>
</div>
<p>© BrewStop 2023</p>
</section>
<!-------Javascript for toggle menu------->
<script>
var navLinks = document.getElementById("navLinks");
var timesIcon = document.getElementById("timesIcon");
function showMenu() {
navLinks.classList.add("active");
timesIcon.classList.add("active");
}
function hideMenu() {
navLinks.classList.remove("active");
timesIcon.classList.remove("active");
}
</script>
</body>
</html>