forked from paul-schuhm/tp1-mds-git-workflow-calculatrice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (37 loc) · 1.19 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Démo Git workflow</title>
</head>
<body>
<header>
<h1>TP: Git workflow</h1>
<nav class="navbar">
<a href="#">Accueil</a>
<a href="#">À propos</a>
</nav>
</header>
<main>
<section>
<header>
<h2>Calculatrice en ligne</h2>
<p>Une application en ligne développée par ...</p>
</header>
<input type="number" name="left-operand" id="left-operand" value="1"> <span id="operator">+</span>
<input type="number" name="right-operand" id="right-operand" value="1"> <span>=</span> <span
id="result">?</span>
</section>
</main>
<aside>
Bare latérale
</aside>
<footer>
Le footer
</footer>
</body>
</html>