-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (51 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vercel Homepage UI Clone</title>
<link rel="stylesheet" href="styles/styles.css" />
<!-- Load 'Inter' from Google Fonts CDN -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;800&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="wrapper">
<header>
<h1 class="left">
<img src="assets/logo.svg" alt="Logo" />
</h1>
<nav class="middle">
<ul>
<li><a href="#">Solutions</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Pricing</a></li>
</ul>
</nav>
<div class="right">
<a class="conf">
<img src="assets/special-button.svg" alt="Special Conference" />
<span>Special Conf</span>
</a>
<!-- https://getavataaars.com/ -->
<img class="avatar" src="assets/avatar.svg" alt="Avatar" />
</div>
</header>
<main>
<h1>
<span>Develop.</span>
<span>Preview.</span>
<span>Ship.</span>
</h1>
<div class="buttons">
<button>Star Coding</button>
<button class="outlined">Get a demo</button>
</div>
<h2> Vercel combines the best developer experience with an obsessive focus on end-user performance. Our platform enables frontend teams to do their best work.</h2>
</main>
<footer>Explore the Vercel way</footer>
</div>
</body>
</html>