-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
46 lines (39 loc) · 1.28 KB
/
test.html
File metadata and controls
46 lines (39 loc) · 1.28 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
<!Doctype = html>
<html>
<head>
<title>Test Script</title>
<meta lang=en-US charset="UTF-8">
<!-- meta in html is called element -->
<!-- lang in html is called an attribute -->
<!-- en-US in html is called a value-->
</head>
<body>
<h1 style="color:red""> This is header 1 </h1>
<!-- style in CSS is called a property -->
<!-- "color:x" in Css is called a value-->
<p style="color:green"> Don't use header for size of the font</p>
<h2> header is there to markup the importance </h2>
<br>
<hr>
<pre style="color:blue">
Pre helps to maintain the format of the webpage.
Pre helps to maintain the format of the webpage.
Pre helps to maintain the format of the webpage.
It is also an html element.
</pre>
<hr>
<p style="color:yellow">
p is an html element which means paragraph.
</p>
<hr>
<p><b>“/b" indicates bold in html</b></p>
<p><i>"i" indicate italisize in html</i></p>
<p><strong>"strong"shows in bold but is more about emphasis</strong></p>
<p><em> "em" shows in italisized but is more about emphasis</em></p>
<p>Need to <ins>insert</ins> this data</p>
<p>Need to <mark> mark </mark> this data</p>
<p>Need to <del> delete </del> this data</p>
<p> I need a superscript <sup>1</sup> </p>
<p> I need a subscript <sub>1</sub> </p>
</body>
</html>