-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (110 loc) · 3.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Gang</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<!-- hero banner -->
<div class="hero-banner">
<div class="wrapper">
<div class="character1"></div>
<div class="character2"></div>
<div class="character3"></div>
<div class="hero-banner-text">
<h4>Rich from <a href="https://taptapkaboom.com"> Tap Tap Kaboom</a> presents</h4>
<h1>The Silliest & <br> Most Awesome Gang <br>In The World!</h1>
<h3>It's Circle Guy, Hat Guy & Red Guy.<br>They're the best of friends.</h3>
<a class="cta alt" href="#more-info">Read More</a>
</div>
</div>
</div>
<!-- nav bar -->
<div id="more-info"></div>
<nav>
<a href="#" class="logo">The Gang</a>
<ul>
<li>
<a href="javascript:()" onclick="showPopup();">Sign Up</a>
</li>
<li>
<a href="#more-info">More Info</a>
</li>
<li>
<a href="#the-story">The Story</a>
</li>
</ul>
</nav>
<!-- more info and story -->
<div id="more-info"></div>
<div class="more-info">
<div class="wrapper">
<h2>Join Our Fan Club</h2>
<a href=""></a>
<p>Every week we have <span class="highlight">a party.</span> If you want to join us then join our fan club. Members will also receive pictures of us in all kinds of shapes and sizes. Cool huh?</p>
<button class="cta" onclick="showPopup();">Sign Me Up!</button>
</div>
</div>
<div class="sep">
</div>
<div class="story" id="the-story">
<div class="wrapper">
<ul class="nb-list">
<li class="blue">Rock n Roll</li>
<li class="gray"> </li>
<li class="yellow dragging">Laughter</li>
<li class="red">Square Offs</li>
<li class="pink">Circuitous Routes</li>
<li class="salmon">Trigonometry</li>
<li class="blue">Rad Hats</li>
<li class="yellow">Being Silly</li>
</ul>
<h3>Left: Things We Find Important<br>Below: Our Story</h3>
<p>Once upon a time there was a group of shapes. They were mostly black and rectangular. They were mean and very serious.</p>
<p>And so they kicked the 3 shapes that didn’t conform out of their gang, which was called the Right Angled Gang.</p>
<p>And so these 3 shapes were very sad, but found great joy and comfort being around each other. They soon started having a lot of fun, started rocking and rolling, started being silly, and became the most well-known shape gang in the universe.</p>
<p>They even started making fun of squares and rectangles in what they like to call ‘Square Offs’!</p>
</div>
</div>
<div class="sep">
</div>
<img class="gang-img" src="img/gang.png" width="735" height="399" alt="The Gang">
<!-- Footer -->
<footer>
Made by Rich from <a href="https://taptapkaboom.com"> Tap Tap Kaboom<a>
</footer>
<!-- Pop Up -->
<div class="popup" id="popup">
<div class="blanket"></div>
<div class="content">
<h2>Fill in your details</h2>
<form action="">
<div class="row">
<div class="item">
<label>Your First Name</label>
<input type="text" placeholder="Awesomeface" value="Shirley">
</div>
<div class="item">
<label>Your Last Name</label>
<input type="text" placeholder="Circleface">
</div>
</div>
<div class="row">
<div class="item">
<label>Your Favourite Colour</label>
<input type="text" placeholder="Pink">
</div>
<div class="item">
<label>Your Favourite Food</label>
<input type="text" placeholder="Apple Pie">
</div>
</div>
<button class="cta">I want in!</button>
</form>
<button class="close" onclick="hidePopup();">Close </button>
</div>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>