-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresultat.html
39 lines (36 loc) · 1.91 KB
/
resultat.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>Boucles strings</title>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<div id="interface">
<header>
<h1>Boucles strings</h1>
</header>
<footer><span>© 2020</span><strong>Boucles strings</strong></footer>
<div class="body" id="app">
<div style="display: grid; grid-template-columns: repeat(4, 1em); grid-template-rows: repeat(4, 1em); gap: 0.1em; font-size: 200%;">
<div style="border: 1px solid black; line-height: 1em; text-align: center;">R</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">i</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">t</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">a</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">i</div>
<div style="border: 1px solid transparent; line-height: 1em; text-align: center;"></div>
<div style="border: 1px solid transparent; line-height: 1em; text-align: center;"></div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">t</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">t</div>
<div style="border: 1px solid transparent; line-height: 1em; text-align: center;"></div>
<div style="border: 1px solid transparent; line-height: 1em; text-align: center;"></div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">i</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">a</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">t</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">i</div>
<div style="border: 1px solid black; line-height: 1em; text-align: center;">R</div>
</div>
</div>
</div>
</body>
</html>