-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (102 loc) · 3.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Rock Mountain</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link
href="//db.onlinewebfonts.com/c/517b7177cdced57f3d41b05f9f62287b?family=Viga"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<section class="aot">
<header>
<img src="img/logo.png" alt="logo" />
<nav>
<a class="navLink hide-mobile" href="#">HOME</a>
<a class="navLink hide-mobile" href="#">LOCATIONS</a>
<a class="navLink hide-mobile" href="#">ABOUT</a>
<a class="navLink hide-mobile" href="#">CONTACT</a>
<img src="img/facebook_white.png" alt="facebook" class="navImage" />
<img src="img/instagram_white.png" alt="instagram" class="navImage" />
<img src="img/twitter_white.png" alt="twitter" class="navImage" />
</nav>
</header>
<h1>Rock Mountain</h1>
<div>Discover the best live music</div>
<a href="#" class="button mt-16">UPCOMING SHOW</a>
</section>
<section class="section-quicklinks">
<a href="#" class="quickLink">
NEWS
<img src="img/category1.png" alt="news" />
</a>
<a href="#" class="quickLink">
ALBUM
<img src="img/category2.png" alt="album" />
</a>
<a href="#" class="quickLink">
STORE
<img src="img/category3.png" alt="store" />
</a>
</section>
<section class="buy-ticket-section">
<img class="buy-ticket-img-left" src="./img/p5.png" alt="Live concert" />
<div class="festival-info">
<span>27 Sep 20</span>
<h2>31 State Festival</h2>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus
voluptate ipsam magnam hic. Dignissimos eius, quia placeat ipsum
quibusdam aperiam doloribus quam, cupiditate voluptatibus dolorum
consectetur? Amet molestiae vel minima.
</p>
</div>
<div class="seperator"></div>
<div class="buy-ticket-container">
<a href="#" class="button">BUY TICKET</a>
</div>
</section>
<section class="slogan-section">
FOLLOW AND LISTEN TO THIS PLAYLIST TO GET PREPARED FOR THE SHOW!
</section>
<section class="video-section"></section>
<footer>
<div class="half-width full-width-mobile footer-left">
SUBSCRIBE & FOLLOW TO GET UPDATES FROM ROCK MOUNTAIN
</div>
<div class="half-width full-width-mobile">
<div class="footer-center">
<img
class="footer-social-media-icon"
src="./img/Facebook.png"
alt="Facebook"
/>
<img
class="footer-social-media-icon"
src="./img/ins.png"
alt="Instagram"
/>
<img
class="footer-social-media-icon"
src="./img/twitter.png"
alt="Twitter"
/>
</div>
<form class="footer-form">
<input required type="text" placeholder="Email address" />
<button class="button button-footer">SUBMIT</button>
</form>
</div>
</footer>
</body>
</html>