-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
73 lines (63 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UI Clone Homepage Vercel</title>
<link rel="stylesheet" href="styles/styles.css" />
<!-- Load 'Inter' from Google Fonts CDN -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet"/>
</head>
<body>
<div id="wrapper">
<header>
<h1 class="left">
<a href="https://vercel.com/" target="_blank" rel="noopener noreferrer">
<img src="assets/images/logo.svg" alt="Logo" />
</a>
</h1>
<nav class="middle">
<ul>
<li><a href="#">Solutions</a></li>
<li><a href="#">Resources</a></li>
<li><a href="https://vercel.com/pricing" target="_blank" rel="noopener noreferrer">Pricing</a></li>
<!-- <li><a href="#">Pricing</a></li> -->
</ul>
</nav>
<div class="right">
<a class="conf">
<img src="assets/images/special-button.svg" alt="Special Conference" />
<span>Special Conf</span>
</a>
<!-- https://getavataaars.com/ -->
<img class="avatar" src="assets/images/avatar.svg" alt="Avatar" />
</div>
</header>
<main>
<h1>
<span>Develop.</span>
<span>Preview.</span>
<span>Ship.</span>
</h1>
<div class="buttons">
<button><a href="https://vercel.com/#get-started" target="_blank" rel="noopener noreferrer">Start Deploying</a>
</button>
<button class="outlined">
<a href="https://vercel.com/contact/sales" target="_blank" rel="noopener noreferrer">Get a Demo</a>
</button>
</div>
<h2>
Vercel combines the best developer experience with an obsessive focus on end-user performance.
Their platform enables frontend teams to do their best work.
</h2>
</main>
<footer>
<p class="origin">Explore the Vercel way</p>
<div class="plei">
<p>Repositório <a href="https://github.com/Pleiterson/ui-clone-vercel-rocketseat" target="_blank" rel="noopener noreferrer">Github</a> deste projeto</p>
<p>Desenvolvido por <a href="https://pleiterson.vercel.app" target="_blank" rel="noopener noreferrer">Pleiterson Amorim</a></p>
</div>
</footer>
</div>
</body>
</html>