-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (101 loc) · 3.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Second design</title>
</head>
<body>
<div class="hero-banner">
<div class="wrapper">
<h4>Rich from <a href="https://taptapkaboom.com">Tap Tap Kaboom</a></h4>
<h1>The Silliest &</br>
Most Awesome Gang</br>
In The World</h1>
<h3>It's Circle Guy, Hot Guy & Red Guy.<br/>
They're the best of friends</h3>
<a class="cta alt" href="#more-info">Read More</a>
</div>
<div class="character1"></div>
<div class="character2"></div>
<div class="character3"></div>
</div>
<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="#story">The Story</a></li>
<li><a href="#more-info">More Info</a></li>
</ul>
</nav>
<div class="more-info" >
<div class="wrapper">
<h2>Join Our Fan Club</h2>
<p>Every week we have <span class="highlight">a party.</span> If you want to join us then join our fan club. Members will else recieve 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="story">
<div class="wrapper">
<ul class="nb-list">
<li class="blue">Rock 'n Roll</li>
<li class="grey"> </li>
<li class="yellow dragging">Laughter</li>
<li class="red">Square offs</li>
<li class="pink">Circuitous Routes</li>
<li class="salmon">Trignomentry</li>
<li class="blue">Red hats</li>
<li class="yellow">Bieng 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 group, which was called the Right Angled Gang.
<p>so these 3 shapes were very sad and find comfort being around eachother. They soon started havving a lot of fun, started rocking and rolling, started being silly, and become the most well-known shapes going 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/the-gang.png" width="735" height="399" alt=""group photo>
<footer>
<div class="wrapper">
Made by hadi sheikh <a href="https://taptapkaboom.com">Tap Tap Kaboom</a>
</div>
</footer>
<div class="popup" id="popup">
<div class="blanker"></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">
</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 Color</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>