-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfinal-page.html
57 lines (53 loc) · 1.93 KB
/
final-page.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
<!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 - Final</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" />
<link rel="stylesheet" type="text/css" href="css/finalStyle.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>
<header>
<!-- here goes the header content -->
</header>
<main>
<div class="wrapper">
<section>
<h1>Your postcard</h1>
</section>
<p>Hooray! Here is your postcard. Get wild and do it agin.</p>
<section>
<div class="postcardBox">
<p class="boxBox"><i>Here would appear the postcard text</i></p>
</div>
</section>
<section>
<a href="../index.html">
<div class="startAgain">
<p>Start again</p>
</div>
</a>
</section>
</div>
</main>
<footer>
<section>
<!-- here goes the footer -->
</section>
</footer>
</body>
</html>