-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay.html
More file actions
23 lines (22 loc) · 1.04 KB
/
display.html
File metadata and controls
23 lines (22 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/display.css">
<title>Display</title>
</head>
<body>
<!--h1{Titre H1}+h3{Titre H3}+div{Une Div est un élément de type block}+a{un lien est de type INLINE}+p{Les balises p sont de type BLOCK}+span{Un span est INLINE}+section{La section est un BLOCK}+a.block{on change l'affichage du a en block}+div.inline{on change l'affichage de la div en inline}-->
<h1>Titre H1</h1>
<h3>Titre H3</h3>
<div>Une Div est un élément de type block</div>
<a href="">un lien est de type INLINE</a>
<p>Les balises p sont de type BLOCK</p>
<span>Un span est INLINE</span>
<section>La section est un BLOCK</section>
<a href="" class="block">on change l'affichage du a en block</a>
<div class="inline">on change l'affichage de la div en inline</div>
</body>
</html>