-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (115 loc) · 4.75 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>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%; animation: 1s ease-out 0s 1 slideInFromLeft; color: #e6d6c5; font-weight: 700; font-size: 18px;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">25%</div>
</div>
<h1>Introduction</h1>
<div class="container">
<div class="row text-center">
<p class="tg" style="font-size: 20px">Robinhood, Lemonade, and Venmo are three of my favorite apps in terms of UI/UX design.<br>They've taken inherently complex processes and simplified them through enjoyable and intuitive interfaces.</p>
</div>
<div class="row">
<div class="col-lg-4 col-sm-8">
<div class="card" style="width: 18rem; height: 18rem;">
<div class="pic" style="height:6rem; padding:1rem;">
<img src="Media/robinhood-logo.png" class="card-img-top" alt="Robinhood logo">
</div>
<div class="card-body">
<p class="card-text">Robinhood is a stock brokerage that allows customers to buy and sell U.S. stocks, options, ETFs, and cryptos with zero commission.</p>
<a href="robinhood.html" class="btn btn-primary">Check out the UI/UX</a>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-8">
<div class="card" style="width: 18rem; height: 18rem;">
<div class="pic" style="height:6rem; padding:1rem;">
<img src="Media/lemonade-logo.png" class="card-img-top" alt="Lemonade logo">
</div>
<div class="card-body">
<p class="card-text">Lemonade operates as a full-stack insurance company powered by AI and behavioral economics and driven by social good.</p>
<a href="lemonade.html" class="btn btn-primary">Check out the UI/UX</a>
</div>
</div>
</div>
<div class="col-lg-4 col-sm-8">
<div class="card" style="width: 18rem; height: 18rem;">
<div class="pic" style="height:6rem; padding:1rem; padding-top:1.5rem;">
<img src="Media/venmo-logo.png" class="card-img-top" alt="Venmo logo">
</div>
<div class="card-body">
<p class="card-text">Venmo provides a social way to instantly pay and request money from your friends via a mobile phone app.</p>
<a href="venmo.html" class="btn btn-primary">Check out the UI/UX</a>
</div>
</div>
</div>
</div>
<h5 style="text-align: center;">Here is some basic information about the companies</h5>
<div class="row" style="margin-top:5px;">
<table class="table">
<thead>
<tr>
<th class="none" scope="col">Company</th>
<th scope="col">Funding</th>
<th scope="col">Employees</th>
<th scope="col">Founded</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row"><a href="https://www.robinhood.com" target="_blank">Robinhood</a></th>
<td>$1.2 Billion</td>
<td>1,200</td>
<td>2013</td>
</tr>
<tr>
<th scope="row"><a href="https://www.lemonade.com" target="_blank">Lemonade</a></th>
<td>$480 Million</td>
<td>350</td>
<td>2015</td>
</tr>
<tr>
<th scope="row"><a href="https://www.venmo.com" target="_blank">Venmo</a></th>
<td>$69 Million</td>
<td>600</td>
<td>2009</td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
<footer>
<div class="container">
<div class="row">
<div class="col-lg-2 col-sm-6"></div>
<div class="col-lg-8 disappear"></div>
<div class="col-lg-2 col-sm-6">
<a href="robinhood.html">Robinhood →</a>
</div>
</div>
</div>
</footer>
</html>