-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (49 loc) · 1.87 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
<html>
<head>
<title>danceinfo</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div class="header">
<video autoplay loop class="back-video" muted playsinline>
<source src="media/video.mp4" type="video/mp4">
</video>
<nav>
<img src="media/logo.png" class="logo">
<ul class="nav-links">
<li><a href="">Home</a></li>
<li><a href="">Events</a></li>
<li><a href="">The Olympics Journey</a></li>
<li><a href="">Blog</a></li>
<li><a href="">Contact</a></li>
<li class="btn">Sign Up</li>
</ul>
</nav>
<div class="content">
<h1>Dance 411</h1>
<form action="">
<input type="text" placeholder="✎ Enter Keyword">
<button type="submit">Search Event/Class</button>
</form>
<div class="category-list">
<div class="category">
<img src="media/events.png">
<p>Events</p>
</div>
<div class="category">
<img src="media/workshops.png">
<p>Workshops</p>
</div>
<div class="category">
<img src="media/auditions.jpg">
<p>Auditions</p>
</div>
<div class="category">
<img src="media/featured.png">
<p>Featured Dancers</p>
</div>
</div>
</div>
</div>
</body>
</html>