-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (59 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Car Manager</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
</head>
<body>
<header>
<div>
<h2 data-js="companyName"></h2><h2 data-js="companyPhone"></h2>
</div>
</header>
<section>
<div class="divForm">
<div>
<form data-js="formSubmit">
<label>Photo (URL):</label>
<input type="url" data-js="formUrl" />
<label>Brand / Model:</label>
<input type="text" data-js="formBrandModel" />
<label>Year:</label>
<input type="number" data-js="formYear" />
<label>Plate:</label>
<input type="text" data-js="formPlate" />
<label>Color:</label>
<input type="text" data-js="formColor" />
<div class="divBtn">
<button type="submit">Register</button>
</div>
</form>
</div>
</div>
<div class="divTable">
<table>
<thead>
<tr>
<th>Photo</th>
<th>Brand / Model</th>
<th>Year</th>
<th>Plate</th>
<th>Color</th>
<th>Action</th>
</tr>
</thead>
<tbody data-js="tableBodyCars"></tbody>
</table>
</div>
</section>
<footer>
<div>
<span>Conclusion project of course <a href="https://www.udemy.com/curso-javascript-ninja/">Javascript Ninja</a> developed by <a href="https://github.com/viniciusmeneses/">Vinicius Meneses</a></span>
</div>
</footer>
<script src="js/min/dom.min.js"></script>
<script src="js/min/main.min.js"></script>
</body>
</html>