1<!doctype html>
2<html lang="fr">
3<head>
4 <meta charset="utf-8">
5 <title>Titre de la page</title>
6 <link rel="stylesheet" href="style.css">
7 <script src="script.js"></script>
8</head>
9<body>
10 ...
11 <!-- Le reste du contenu -->
12 ...
13</body>
14</html>
1<!DOCTYPE html>
2<html lang="en">
3
4<head>
5 <meta charset="utf-8">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
7 <title>Code Breaker</title>
8 <link rel="stylesheet" href="style.css">
9</head>
10
11<body>
12 <header>
13 <h1>Give A Like if you see this heading</h1>
14 </header>
15 <nav>
16 <ul>
17 <li>Wrote it simpler to easily delete.</li>
18 <li>Home</li>
19 <li>Services</li>
20 <li>About Us</li>
21 <li>Contact</li>
22 </ul>
23 </nav>
24 <section>
25 Havn't you liked this answer yet!
26 </section>
27 <footer>
28 Copyright © 2020-2030
29 </footer>
30</body>
31
32</html>
1<!DOCTYPE html>
2<html lang="en-US">
3<head>
4<title>HTML Structure by (Md Abdur Rakib)</title>
5<meta charset="utf-8">
6<meta name="viewport" content="width=device-width, initial-scale=1">
7 // keyword here
8<meta name="Keywords" content="">
9 // Site Description Here
10<meta name="Description" content="">
11 // Set your site favicon
12<link rel="icon" href="" type="image/x-icon">
13 </head>
14<body>
15
16//All content about here
17
18</body>
19</html>
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <title>HTML basics</title>
6 </head>
7 <body>
8
9
10 </body>
11</html>
1<!DOCTYPE html>
2<html>
3<head>
4 <title></title>
5</head>
6<body>
7
8</body>
9</html>
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="UTF-8" />
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>A website</title>
7 </head>
8 <body>
9 ...
10 </body>
11</html>