-
Notifications
You must be signed in to change notification settings - Fork 1
/
onboarding.html
50 lines (41 loc) · 1.46 KB
/
onboarding.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
<!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">
<link rel="stylesheet" href="./styles/onboarding.css">
<title>Onboarding</title>
</head>
<body>
<div id="onoboarding_container">
<div id="div_1">
<h1>Welcome to Buffer 👋</h1>
<p>Where would you like to start?</p>
</div>
<div id="div_2">
<button id="btn1">
<img src="https://buffer-ui.s3.amazonaws.com/products/publish-card_%402x.jpeg" alt="">
<h3>Publishing</h3>
<p>Plan, create, and schedule content</p>
</button>
<button id="btn2"> <img src="https://buffer-ui.s3.amazonaws.com/products/analyze-card_%402x.jpeg" alt="">
<h3>Analytics</h3>
<p>Optimize and learn from your content</p>
</button>
<button id="btn3"> <img src="https://buffer-ui.s3.amazonaws.com/products/engagement-card_%402x.jpeg" alt="">
<h3>Engagement</h3>
<p>Answer comments to get closer to your audience</p>
</button>
<button id="btn4"> <img src="https://buffer-ui.s3.amazonaws.com/products/start-page-card_%402x.jpeg" alt="">
<h3>Start Page</h3>
<p>Build a landing page in minutes</p>
</button>
</div>
<div id="div_3">
<a href="publishing_campaign.html">Skip selection</a>
</div>
</div>
</body>
</html>
<script src="./scripts/onboard.js"></script>