-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelements&tags.html
More file actions
38 lines (37 loc) · 1.23 KB
/
elements&tags.html
File metadata and controls
38 lines (37 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web2</title>
</head>
<body>
<hgroup>
<h1>Title of post one</h1>
<h2>Subtitle of post one</h2>
<h3>Hello world</h3>
</hgroup>
<b>I am a web developer</b><br>
<i>This text is displayed in italic</i><br>
<u>This text is displayed in underline</u><br>
<small>We are learning html</small><br>
<kbd>Ctrl</kbd> + <kbd>C</kbd>
<p>Lorem ipsum dolor sit amet <mark>consectetur</mark> adipisicing elit.</p>
<details>
<summary>Hello World</summary>
<p>We are learning Hyper Text Markup Language(HTML)</p>
</details><br>
<bdo dir="rtl">Lorem ipsum dolor sit amet consectetur.</bdo><br>
<bdo dir="ltr">Lorem ipsum dolor sit amet consectetur.</bdo><br>
<abbr title="Cascading Style Sheets">CSS</abbr><br>
<p>WWF's goal is to: <q>Build a future where people live in harmony with nature.</q></p>
<address>
Written by John Doe.<br>
Visit us at:<br>
Example.com<br>
Box 564, Disneyland<br>
USA
</address>
<p>This is a <!--great text-->paragraph</p>
</body>
</html>