-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stripe</title>
<!-- font-awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css"
/>
<!-- stylesheet -->
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- navbar -->
<nav class="nav">
<div class="nav-center">
<div class="nav-header">
<img src="./images/logo.svg" class="nav-logo" alt="" />
<button class="btn toggle-btn">
<i class="fas fa-bars"></i>
</button>
</div>
<ul class="nav-links">
<li>
<button class="link-btn">products</button>
</li>
<li>
<button class="link-btn">developers</button>
</li>
<li>
<button class="link-btn">company</button>
</li>
</ul>
<button class="btn signin-btn">Sign in</button>
</div>
</nav>
<!-- hero -->
<section class="hero">
<div class="hero-center">
<article class="hero-info">
<h1>
Payments infrastructure <br />
for the internet
</h1>
<p>
Millions of companies of all sizes—from startups to Fortune 500s—use
Stripe’s software and APIs to accept payments, send payouts, and
manage their businesses online.
</p>
<button class="btn">Start now</button>
</article>
<article class="hero-images">
<img src="./images/phone.svg" class="phone-img" alt="" />
</article>
</div>
</section>
<!-- sidebar -->
<div class="sidebar-wrapper">
<aside class="sidebar">
<button class="close-btn">
<i class="fas fa-times"></i>
</button>
<div class="sidebar-links"></div>
<!-- links -->
</aside>
</div>
<!-- links -->
<aside class="submenu"></aside>
<script type="module" src="app.js"></script>
</body>
</html>