-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Garage Wagon</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="stylesheets/style.css">
</head>
<body>
<div class="app">
<div class="garage">
<div class="garage-image" style="background:linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.4)), url('images/garage.jpg');">
<div class="garage-logo">
<img src="images/white_logo_red_circle.png" alt=""/>
</div>
</div>
<div class="garage-info">
<h3 class="text-center">Le Wagon</h3>
<div class="garage-description">
Our garage is the best.
Reasonable price, always on time, we are the best (and fictionnal).
</div>
<div class="text-center">
<form class="car-form">
<input type="text" class="form-control" placeholder="Pontiac">
<input type="text" class="form-control" placeholder="Firebird Trans Am 1982">
<input type="text" class="form-control" placeholder="Mikael">
<div class="btn btn-cta">
Add a Car
</div>
</form>
</div>
</div>
</div>
<div class="cars-list">
<div class="car">
<div class="car-image">
<img src="images/white_logo_black_square.png" alt=""/>
</div>
<div class="car-info">
<h4>Volkswagen - Combi</h4>
<p><strong>Owner:</strong> Boris</p>
</div>
</div>
</div>
</div>
<script src="build/application.js"></script>
</body>
</html>