-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathour-mission.html
74 lines (70 loc) · 2.4 KB
/
our-mission.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
<!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">
<link rel="shortcut icon" href="resources/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="resources/css/style.css">
<link rel="stylesheet" type="text/css" href="resources/css/styles.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=Dancing+Script&display=swap" rel="stylesheet">
<style>
h1, h2{font-family: 'Dancing Script', cursive;}
li, p, h4, h5, h3, a{
font-family: 'Amatic SC', cursive;
}
</style>
<title>Our Mission</title>
</head>
<body>
<div class="top-page-contact">
<p>
<a href="index.html">Contact Us</a>
</p>
</div>
<div class="header">
<img src="resources/images/forrest logo.png" alt="Sage Cafe Logo" width="250px" height="300px">
<h1>Sage Cafe</h1>
</div>
<div class="navigation-bar">
<ul>
<li>
<a href="about-us.html">About Us</a>
</li>
<li>
<a href="index.html">Menu</a>
</li>
</ul>
</div>
<div class="our-mission">
<h2>Our Mission</h2>
</div>
<div class="footer-container">
<div class="footer">
<div class="footer-heading footer-1">
<h3>Contact Us</h3>
<a href="#">Jobs</a>
<a href="#">Support</a>
<a href="contact-us.html">Contact</a>
<a href="#">Sponsorships</a>
</div>
<div class="footer-heading footer-2">
<h3>Social Media</h3>
<a href="#">Instagram</a>
<a href="#">Facebook</a>
<a href="#">YouTube</a>
</div>
<div class="footer-email-form">
<h3>Join Our Newsletter</h3>
<Input id="footer-email" type="e-mail" placeholder="Enter Your E-mail">
<Input type="submit" value="Sign Up" id="footer-email-button">
<div class="copyright">
<h5>© Sage Cafe 2021</h5>
</div>
</div>
</div>
</div>
</body>
</html>