-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.06 KB
/
index.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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- tab icon: called a "favicon" -->
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon" />
<title>Postcard Generator - Index</title>
<!-- other meta tages -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="23 Code Street Cohort 5 Students" />
<meta name="description" content="The final project of Cohort 5 @23CodeStreet." />
<meta name="keywords" content="postcard, meme, image, builder, generator, creator" />
<!-- external CSS links -->
<link href="https://fonts.googleapis.com/css?family=Karla|Lato" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- external JS links -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="js/app.js"></script>
</head>
<body>
<div class="container">
<!-- Header -->
<header>
<h1>Postcard Generator</h1>
</header>
<!-- Dropdown Navigation -->
<nav class="dropdown">
<button class="dropbtn">
<div class="menu-icon"></div>
<div class="menu-icon"></div>
<div class="menu-icon"></div>
</button>
<ul class="dropdown-content">
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Create Your Postcard</a>
</li>
<li>
<a href="#">About Us</a>
</li>
<li>
<a href="#">23 Code Street</a>
</li>
</ul>
</nav>
<!-- Main -->
<main>
</main>
<!-- Footer -->
<footer>
<p>© 23 Code Street, Cohort 5 Students / 2017</p>
</footer>
</div><!-- /container -->
</body>
</html>