-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (63 loc) · 2.47 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
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href='style.css' rel='stylesheet'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<link href='style.css' rel='stylesheet'>
<meta charset="utf-8">
<title>My playground landing</title>
</head>
<body>
<div id="banner">
<h1>My playground app</h1>
<p>This is the important line everyone reads..</p>
<p>
<a href="#" class="btn btn-danger">Start now</a>
</p>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card">
<img src="images/briefcase.png" alt="picture description" width="100">
<h2>Fast</h2>
<p>A fast app, <strong>very fast</strong> app</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card">
<img src="images/diamond.png" alt="picture description" width="100">
<h2>Simple</h2>
<p>A simple app, <strong>very simple</strong> app</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card">
<img src="images/heart.png" alt="picture description" width="100">
<h2>Awesome</h2>
<p>An awesome app, <strong>very awesome</strong> app</p>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-3">
<div class="card">
<img src="images/laptop.png" alt="picture description" width="100">
<h2>Beautiful</h2>
<p>A beautiful app, <strong>very beautiful</strong> app</p>
</div>
</div>
</div>
</div>
<div id="footer">
<p>This is a playground landing ©Le Wagon</p>
<ul class="list-inline">
<li><a href="#"><i class="fab fa-youtube"></i></a></li>
<li><a href="#"><i class="fab fa-facebook"></i></a></li>
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-github"></i></a></li>
</ul>
</div>
</body>
</html>