-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (113 loc) · 4.53 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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript" src="js/filter.js"></script>
<script type="text/javascript" src="js/vote.js"></script>
<script type="text/javascript" src="js/countWords.js"></script>
<!--<script type="text/javascript" src="js/prompt.js"></script>-->
<script type="text/javascript" src="js/modal.js"></script>
<script type="text/javascript" src="js/mirror.js"></script>
<style type="text/css" media="all">@import url("css/style.css");</style>
</head>
<body>
<div id="outer" tabindex="1">
<div id="inner">
<div id="header">
<h1>This is a modal<h1>
</div>
<div id="body">
<p>You should probably click out of this once you've seen it</p>
<a href="#" id="close">X</a>
</div>
</div>
</div>
<div id="page">
<header class="header section">
<div class="logo">
<a href="#">
<img src="" width="200" height="75" alt="Logo" title="Logo" />
</a>
</div>
<nav class="menu">
<li><a>Home</a></li>
<li><a>Browse</a></li>
<li><a>Contact</a></li>
</nav>
</header>
<main class="section">
<section class="marquee section">
<div class="slide">
<img src="images/marquee.jpg" alt="Slide Image" title="Slide Image"/>
<div class="mirror">
<p class="mirror-text"></p>
<span class="word-count"></span>
<p class="mirror-name"></p>
</div>
</div>
<div id="form" class="form">
<h1>Leave your message</h1>
<form>
<input id="fullname" placeholder="Full Name" type="text">
<textarea id="textarea"placeholder="Leave a message"></textarea>
<select id="selector" class="selector">
<option value="redCoat" selected="selected">Red Coat</option>
<option value="blueJeans">Blue Jeans</option>
<option value="greenHat">Green Hat</option>
</select>
<input class="submit" type="submit" value="Vote">
</form>
</div>
</section>
<section class="main-content section">
<nav class="filter section">
<li><a class="all">All</a></li>
<li><a class="on-sale">On Sale</a></li>
<li><a class="featured">Featured</a></li>
</nav>
<div class="content section">
<div class="triptych">
<img src="images/resources.jpg" width="200" alt="Logo" title="Logo" />
<h3>This is a header</h3>
<p>This is not special. some paragraph text. This is some paragraph text. This is some paragraph text. This is some paragraph text.</p>
<a data-select="greenHat" class="button vote" href="#form">Green Hat</a>
</div>
<div class="triptych sale">
<img src="images/kid.jpg" width="200" alt="Logo" title="Logo" />
<h3>This is a header</h3>
<p>This is one is on sale. some paragraph text. This is some paragraph text. This is some paragraph text. This is some paragraph text.</p>
<a class="button vote" data-select="blueJeans" href="#form">Blue Jeans </a>
</div>
<div class="triptych featured">
<img src="images/alum.jpg" width="200" alt="Logo" title="Logo" />
<h3>This is a header</h3>
<p>This is one is featured. some paragraph text. This is some paragraph text. This is some paragraph text. This is some paragraph text.</p>
<a class="button vote" data-select="redCoat" href="#form">Red Coat</a>
</div>
<div class="triptych featured">
<img src="images/alum.jpg" width="200" alt="Logo" title="Logo" />
<h3>This is a header</h3>
<p>This is not special. some paragraph text. This is some paragraph text. This is some paragraph text. This is some paragraph text.</p>
<a class="button">Do Something</a>
</div>
<div class="triptych">
<img src="images/kid.jpg" width="200" alt="Logo" title="Logo" />
<h3>This is a header</h3>
<p>This is one is on sale. some paragraph text. This is some paragraph text. This is some paragraph text. This is some paragraph text.</p>
<a class="button">Do Something</a>
</div>
<div class="triptych sale">
<img src="images/marquee.jpg" width="200" alt="Logo" title="Logo" />
<h3>This is a header</h3>
<p>This is one is featured. some paragraph text. This is some paragraph text. This is some paragraph text. This is some paragraph text.</p>
<a class="button">Do Something</a>
</div>
</div>
</section>
</main>
<footer class="section">
</footer>
</div>
</body>
</html>