-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (65 loc) · 2.11 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
<!DOCTYPE html>
<html>
<head>
<title>Comedy Club</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="styles.css" rel="stylesheet"
</head>
<body>
<nav>
<div class="links">
<ul>
<li><a href="#entertainers">Entertainers</a></li>
<li><a href="#events">Events</a></li>
</ul>
</div>
</nav>
<header>
<div class="intro">
<h1>Comedy Club</h1>
</div>
</header>
<main>
<section id="entertainers">
<div class="summary">
<h2>Meet up. Comedy. Laughter.</h2>
<p>Come join our community focused on entertaining everyone with comedy shows.</p>
</div>
<div class="comedians">
<div class="pic">
<img src="./images/Deep.jpg" alt="Deep Halder">
</div>
<div class="label">
<h3>Deep Halder</h3>
</div>
<div class="pic">
<img src="./images/Anirban.jpg" alt="Anirban Das">
</div>
<div class="label">
<h3>Anirban Dutta</h3>
</div>
<div class="pic">
<img src="./images/Aritra.jpg" alt="Aritra Chatterjee">
</div>
<div class="label">
<h3>Aritra Chatterjee</h3>
</div>
</div>
</section>
<section id="events">
<div class="events">
<h2>Come join the fun!</h2>
<h4>Future Events</h4>
<p>14th Aug Kolkata</p>
<p>16th Aug Pune</p>
<p>20th Aug Delhi</p>
<p>26th Aug Mumbai</p>
</div>
</section>
</main>
<footer>
<h5> © Comedy Club | fictional website</h5>
</footer>
</body>
</html>