-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (67 loc) · 1.97 KB
/
index.html
File metadata and controls
74 lines (67 loc) · 1.97 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Le blog de Xav</title>
<link rel="stylesheet" href="/css/main.css">
</head>
<body>
<nav>
<div class="dropdown">
<button id="menuBtn" class="dropbtn">
Menu
</button>
<div id="myDropdown" class="dropdown-content">
<a href="index.html">Feed</a>
<a href="gallery.html">Gallery</a>
<a href="games.html">Jeux</a>
</div>
</div>
</nav>
<h1>Les livres du moment</h1>
<div class="form-container">
<div>
<h2>Ajouter un livre</h2>
</div>
<form action="">
<div class="row">
<div class="col-25">
<label for="tit">Titre</label>
</div>
<div class="col-75">
<input type="text" id="tit" name="titre" placeholder="Titre du livre..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="aut">Auteur</label>
</div>
<div class="col-75">
<input type="text" id="aut" name="Auteur" placeholder="Nom prénom..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="genre">Genre</label>
</div>
<div class="col-75">
<input type="text" id="genre" name="Genre" placeholder="French littérature..">
</div>
</div>
<br>
<div class="row">
<input type="submit" value="Enregistrer">
</div>
</form>
</div>
<!-- FEED -->
<div id="feedBlock" class="flex-wrap">
</div>
<script src="/js/nav.js"></script>
<script src="/js/index.js"></script>
</body>
</html>
<!--<div style="height: 100px; width: 100px;" id="feedBlock" class="container">-->
<!-- <input type="text" class="inputForm" name="name" id="inputBtn">-->
<!-- <input type="text" class="inputForm" name="firstName" id="inputBtn2">-->
<!--</div>-->