-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml.html
More file actions
81 lines (75 loc) · 1.99 KB
/
html.html
File metadata and controls
81 lines (75 loc) · 1.99 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Musicology</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="navbar">
<div class="container">
<div class="logo">🎵 Musicology</div>
<nav class="menu">
<a href="#">HOME</a>
<a href="#product">PRODUCT</a>
<a href="#">PROMO</a>
<a href="#">ABOUT</a>
<a href="#">CONTACT</a>
</nav>
<div class="search">🔍</div>
</div>
</header>
<div class="hero">
<div class="hero-text">
<h1>Please register</h1>
<p>register here</p>
<a class="btn" href="#">Registration</a>
</div>
<div class="hero-img">
<img src="https://via.placeholder.com/300x400" alt="Dancer" />
</div>
</div>
<section class="dance-tour">
<h2>Dance Tour</h2>
<p>Our best performances around the world</p>
<div class="tour-cards">
<div class="tour-card">
<img src="https://via.placeholder.com/200x150" alt="America" />
<h3>America</h3>
<p>Shows in big cities</p>
</div>
<div class="tour-card">
<img src="https://via.placeholder.com/200x150" alt="Asia" />
<h3>Asia</h3>
<p>The best scenes in Asia</p>
</div>
<div class="tour-card">
<img src="https://via.placeholder.com/200x150" alt="Australia" />
<h3>Australia</h3>
<p>The public loves us!</p>
</div>
</div>
</section>
<section id="product" class="pricing">
<h2>Pricing</h2>
<div class="cards">
<div class="card">
<h3>Basic</h3>
<p>$19/mo</p>
<button>Choose</button>
</div>
<div class="card">
<h3>Pro</h3>
<p>$49/mo</p>
<button>Choose</button>
</div>
<div class="card">
<h3>Enterprise</h3>
<p>$99/mo</p>
<button>Choose</button>
</div>
</div>
</section>
</body>
</html>