forked from JustFS/css-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 1.65 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1>Les bases de CSS</h1>
</header>
<main>
<div class="positioning">
<h2>Positioning</h2>
<span>relative</span>
<span id="circle" class="absolute">absolute</span>
<span id="rectangle" class="absolute">absolute</span>
<span id="square" class="absolute">absolute</span>
</div>
<div class="flexbox">
<h2>Flexbox</h2>
<ul>
<li>
<a href="https://flexbox.help/" target="_blank">https://flexbox.help/</a>
</li>
<li>
<a href="https://www.reveillere.fr/M2WEB/sheets/css.pdf" target="_blank">www.reveillere.fr</a>
</li>
<li>
<a href="https://cssgenerator.org/" target="_blank">https://cssgenerator.org/</a>
</li>
</ul>
</div>
<div class="flexbox-exo">
<h2>Flexbox Exo</h2>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div class="grid">
<h2>Grid</h2>
<div class="grid-container">
<img src="./assets/img/logo-css.png" height="200" alt="logo-css">
<form action="">
<input type="text" id="firstname" placeholder="Prénom">
<input type="text" id="surname" placeholder="Nom">
<textarea cols="30" rows="10" placeholder="Ici votre message"></textarea>
<input type="submit" value="Valider">
</form>
</div>
</div>
</main>
<footer></footer>
</body>
</html>