-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrobinhood.html
63 lines (63 loc) · 2.26 KB
/
robinhood.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Robinhood - Top 3 App Designs</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<header>
<ul class="nav justify-content-center nav-justified">
<a class="nav-item" href="index.html">
<li>Introduction</li>
</a>
<a class="nav-item" href="robinhood.html">
<li>Robinhood</li>
</a>
<a class="nav-item" href="lemonade.html">
<li>Lemonade</li>
</a>
<a class="nav-item" href="venmo.html">
<li>Venmo</li>
</a>
</ul>
</header>
<body>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 25%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
<div class="progress-bar" role="progressbar" style="width: 25%; animation: 1s ease-out 0s 1 slideInFromLeft; color: #e6d6c5; font-weight: 700; font-size: 18px;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">50%</div>
</div>
<h1>Robinhood</h1>
<div class="container">
<div class="row">
<h3 style="font-weight: 700;">Ways Robinhood Excelled in UI/UX</h3>
</div>
<div class="row">
<ul>
<li>Easy Onboarding to Sign Up and Link Bank Accounts</li>
<li>Effective Use of Colors</li>
<li>Delightful Micro Interactions</li>
<li>Emphasis on Personalization and Return Rates</li>
<li>Mobile First but Great on Desktop</li>
<li>Gamification Through Free Stocks</li>
</ul>
</div>
<div class="row">
<h5>More details, images, etc. coming soon</h5>
</div>
</div>
</body>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-2 col-sm-6">
<a href="index.html">← Intro</a>
</div>
<div class="col-lg-8 dissapear"></div>
<div class="col-lg-2 col-sm-6">
<a href="lemonade.html">Lemonade →</a>
</div>
</div>
</div>
</footer>
</html>