generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (112 loc) · 5.38 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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Musical Fest '22</title>
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link href="https://fonts.cdnfonts.com/css/cocogoose" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<div class="app-wrap">
<header>
<nav class="mobile-nav">
<div class="openMenu"><i class="fa-solid fa-bars fa-xl"></i></div>
</nav>
<nav class="mobile-menu">
<div class="closeMenu"><i class="fa-solid fa-times"></i></div>
<ul class="menu-items">
<li><a class="close-nav" href="about.html">About</a></li>
<li><a class="close-nav" href="#program">Program</a></li>
<li><a class="close-nav" href="#artists">Artists</a></li>
<li><a class="close-nav" href="#sponsors">Sponsors</a></li>
</ul>
</nav>
<nav class="desktop-nav-1">
<ul class="top-nav-items">
<li class="black-nav-item"><a href="#" class="fa-brands fa-facebook-f"></a></li>
<li class="black-nav-item"><a href="#" class="fa-brands fa-twitter"></a></li>
<li class="black-nav-item"><a href="#">English</a></li>
<li class="black-nav-item"><a href="#">My Page</a></li>
<li class="black-nav-item"><a href="#">Logout</a></li>
</ul>
</nav>
<nav class="desktop-nav-2">
<div class="logo"><img src="img/logo.png" alt="logo"><a href="index.html">Musical Fest '22</a></div>
<ul class="main-nav-items">
<li><a href="about.html">About</a></li>
<li><a href="#program">Program</a></li>
<li><a href="#artists">Artists</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a class="music-fest-nav" href="#introduction">Music Fest</a></li>
</ul>
</nav>
</header>
<section id="introduction" class="introduction">
<div class="intro-text">
<p class="headline">"ARE YOUR READY!"</p>
<h1 class="main-heading">MUSICAL FEST '22 <br> LAHORE 2022</h1>
<p class="description">A joyful celebration where people from 10+ cities come together to celebrate and enjoy this festival taking place this November in Lahore.</p>
<h2 class="date">2022.11.26-Sat</h2>
<p class="location">@ Community Park DHA Lahore</p>
</div>
</section>
<section id="program" class="main-program">
<h3>Main Program</h3>
<hr>
<div class="program-details">
<div class="detail lecture">
<div><i class="fa-solid fa-person-chalkboard"></i></div>
<h4 class="program-heading">Lecture</h4>
<p class="description-program">Listen to the musical legends of Pakistan on their take on music</p>
</div>
<div class="detail games">
<i class="fa-solid fa-gamepad"></i>
<h4 class="program-heading">Games</h4>
<p class="description-program">We have arranged different games for kids and families to enjoy with music.</p>
</div>
<div class="detail food">
<i class="fa-solid fa-pizza-slice"></i>
<h4 class="program-heading">Food</h4>
<p class="description-program">There will be various food stalls of top restaurants so you don't lose your appetite.</p>
</div>
<div class="detail forum">
<i class="fa-solid fa-comment"></i>
<h4 class="program-heading">Forum</h4>
<p class="description-program">Have the time to share your thoughts and opinions with experts for each topic.</p>
</div>
<div class="detail networking">
<i class="fa-solid fa-circle-nodes"></i>
<h4 class="program-heading">Meeting the experts</h4>
<p class="description-program">To increase your knowledge about the music industry, there wil be experts to let you know it better</p>
</div>
</div>
<button class="join-button" type="button">Join the Musical Fest '22</button>
</section>
<div id="artists" class="artist-heading">
<h3>Featured Artists</h3>
<hr>
</div>
<section class="artists-section">
</section>
<section id="sponsors" class="partners-section">
<h3>Partners</h3>
<hr>
<div class="partners-img">
<img class="img-1" src="img/microverse-logo.png" alt="microverse logo">
<img class="img-2" src="img/dominos.png" alt="dominos logo">
<img class="img-3" src="img/yamaha.png" alt="yamaha logo">
<img class="img-4" src="img/audi.png" alt="audi logo">
</div>
</section>
<footer class="footer">
<div class="footer-logo"><img src="img/logo.png" alt="logo"><a class="footer-text">Musical Fest '22</a></div>
<div class="license"><p>2022 Music Fest, Lahore. Some rights reserved.</p></div>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>