-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
45 lines (41 loc) · 1.38 KB
/
demo.html
File metadata and controls
45 lines (41 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
</head>
<body>
<p>My cat is <strong>very</strong> grumpy.</p>
<em>first</em><em>second</em><em>third</em>
<p>fourth</p>
<p>fifth</p>
<p>sixth</p>
<img src="https://raw.githubusercontent.com/mdn/beginner-html-site/gh-pages/images/firefox-icon.png">
<a href=https://www.mozilla.org />favorite website</a>
<p>In HTML, you define a paragraph using the <p> element.</p>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<p>My favorite color is <del>blue</del> red.</p>
<p>This is <sub>subscripted</sub> text.</p>
<p>This is <sup>superscripted</sup> text.</p>
<p>This is a <br> paragraph with a line break.</p>
<a href="mailto:someone@example.com">Send email</a>
<button onclick="document.location='default.asp'">HTML Tutorial</button>
<center>
<h1>heading 1</h1>
<h2>heading 2</h2>
<h3>heDING 3</h3>
<h4>heading 4</h4>
<h5>heading 5</h5>
<h6>heading 6</h6>
</center>
<p id="html">this is para graph</p>
<h3 title="hello html">title here</h3>
<div class="city">
<h2>London</h2>
<p>london is capital of england </p>
</div>
<p style="font-family: Arial, Helvetica, sans-serif; color: blueviolet;">hello</p>
</body>
</html>