-
Notifications
You must be signed in to change notification settings - Fork 0
/
class2.html
46 lines (46 loc) · 1.54 KB
/
class2.html
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>class2</title>
<style>
<!-- body{backgroung-color:black;} -->
h1{color:red;}
p{color:blue;}
</style>
</head>
<body>
<h1>Text Formatting</h1>
<p><b>this is a bold text</b></p>
<p><i>this is a italic text</i></p>
<p>this is a <sub>subscript</sub> and this is a <sup>superscript</sup></p>
<p>this text is <strong>important</strong></p>
<p>this text is <em>emphasized</em></p>
<p>this is a <small>small text</small></p>
<p>this is to <mark>mark</mark> a text</p>
<p>this is to <del>delete</del> a text</p>
<p>this is an <ins>inserted</ins> text</p>
<p>upl <q>ultimate powerfull language</q></p>
<p><blockquote cite="www.google.com">
Google search engine.
</blockquote></p>
<p>this is an abbrivation for <abbr title="ultimate powerful learning">upl</abbr></p>
<address>
this is an address
format
#911 texas,
united states of america.
</address>
<p>this is a <cite>cite format</cite></p>
<bdo dir="rtl"> this text will be written from right to left</bdo>
<br>
<a href = "http://www.google.com/" target="_blank">Google</a>
<p>if target = blank it opens in new window</p>
<a href = "http://www.google.com/" target="_self">Google</a>
<p>if target = blank it opens in same window</p>
<a href = "http://www.google.com/" target="_parent">Google</a>
<p>if target = blank it opens in parent window</p>
<a href = "http://www.google.com/" target="_top">Google</a>
<p>if target = blank it opens in full window</p>
<img src="https://shorturl.at/gCDSX" alt="Roses" width="100" height="100">
</body>
</html>