-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (65 loc) · 2.42 KB
/
index.html
File metadata and controls
76 lines (65 loc) · 2.42 KB
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="description" content="Frase que aparece na busca">
<meta property = "og:image" content=""pode usat titulo, imagem, preview facebook, whatsapp>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">
<link rel="stylesheet" type="text/css" href="style.css">
<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">
<title>My playground landing</title>
</head>
<body>
<div class="banner">
<h1>My playground app</h1>
<p>This is the important line everyone reads..</p>
<p>
<a href="#" class="btn btn-primary">Start now</a>
</p>
</div>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-6 col-lg-3">
<div class="card text-center">
<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-md-6 col-lg-3">
<div class="card text-center">
<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-md-6 col-lg-3">
<div class="card text-center">
<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-md-6 col-lg-3">
<div class="card text-center">
<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>
<footer 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>
</footer>
</body>
</html>