-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
65 lines (63 loc) · 2.33 KB
/
form.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
<!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 - Form</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>
<!-- Start HTML content here -->
<header>
<section>
<!-- here goes the menu -->
<h1>23 Code Street</h1>
</section>
</header>
<main>
<section class="section-1">
<h2>Choose your image</h2>
<button class="js-activator" data-section="section-2">Next</button>
</section>
<section class="section-2">
<h2>Write your message</h2>
<button class="js-activator" data-section="section-3">Next</button>
</section>
<section class="section-3">
<h2>Choose text placement</h2>
<button class="js-activator" data-section="section-4">Next</button>
</section>
<section class="section-4">
<h2>Choose your style</h2>
<button class="js-activator" data-section="section-5">Next</button>
</section>
<section class="section-5">
<h2>Preview</h2>
</section>
</main>
<footer>
<section>
<!-- here goes the progress bar -->
</section>
<section>
<!-- here goes the buttons for start/finish -->
</section>
<section>
<!-- here goes the button for 23 Code Street -->
</section>
</footer>
</body>
</html>