-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic02-content2.html
More file actions
48 lines (40 loc) · 1.73 KB
/
basic02-content2.html
File metadata and controls
48 lines (40 loc) · 1.73 KB
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
<!DOCTYPE html>
<html lang="en-CA">
<head>
<meta charset="UTF-8">
<!--
We have other optional meta data elements
to allow developers to define important data about their website
that helps with display and SEO.
"charset" and "viewport" are types of metadata that a site needs to display its content property.
The name attribute defines the type of data the meta tag contains,
in the first code below, that is viewport.
The content attribute defines the data.
-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- The final three metadata types are description, keywords and author. -->
<meta name="description" content="The web page description that often shows up in search results goes in here.">
<meta name="keywords" content="HTML,CSS,XML,JavaScript,Python">
<meta name="author" content="Your Name">
<title>Full Basic Page Content</title>
</head>
<body>
<body>
<!-- There should be only one h1 per page. -->
<h1>There should be only one h1 per page.</h1>
<h2> h2 is a sub heading</h2>
<h3> h3 is less important than h2 </h3>
<h4> h4 is less important than h3 </h4>
<h5> h5 is less important than h4 </h5>
<h6> h6 is less important than h5 </h6>
<p> This is simple paragraph</p>
<!-- <br> or <br /> -->
<p> Lorem ipsum dolor sit amet, <br>
consectetur adipisicing elit. <br>
Ullam cumque at porro repellat deserunt minima! <br>
Praesentium molestiae molestias odio vel, inventore iste a similique necessitatibus perspiciatis, esse
earum,
accusamus debitis?
</p>
</body>
</html>