-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (59 loc) · 2.34 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
<html>
<head>
<meta charset="utf-8">
<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.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link href='style.css' rel='stylesheet'>
<title>Awesome App</title>
</head>
<body>
<div id="banner">
<h1>My awesome app</h1>
<p>This is the important line everyone reads..</p>
<a class="btn btn-primary btn-lg" href="https://www.meetup.com/Nantes-rb/">I want to register!</a>
</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">
<ul class="list-inline">
<li><a href="#" class="social"><i class="fa fa-youtube"></i></a></li>
<li><a href="#" class="social"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" class="social"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" class="social"><i class="fa fa-github"></i></a></li>
</ul>
<p>Tank you Le Wagon | the Nantes.rb team</p>
</div>
</body>
</html>