-
Notifications
You must be signed in to change notification settings - Fork 859
/
index.html
29 lines (29 loc) · 891 Bytes
/
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
<!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>CSS Day</title>
</head>
<body>
<header>
<a href="/">CSS Day</a>
<div>
<nav>
<ul>
<li><a href="#">About</a></li>
<li><a href="speakers.html">Speakers</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<img src="./icons/shopping-cart.svg" alt="Shopping cart">
</div>
</header>
<main>
<p>CSS Day is a conference for developers who love beautiful websites.</p>
<p>4-8 June 2023</p>
<button>Buy Tickets <img src="./icons/arrow-right.svg" alt="Right arrow"></button>
</main>
</body>
</html>