-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathhtml-basic-2.html
More file actions
40 lines (35 loc) · 1.25 KB
/
html-basic-2.html
File metadata and controls
40 lines (35 loc) · 1.25 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
<!doctype html>
<html>
<head>
<title>intro to html and html basics 2</title>
</head>
<body>
<h1>Top<a name="top"></a></h1>
<p>This is a <b>bold</b></p>
<p>This is a <i>Italic</i></p>
<p>This is a <u>Under Line</u></p>
<p>This is a <strike>Strike</strike></p>
<p>This is a <tt>Tele Type</tt></p>
<p>This is a <sup>Superscript Text</sup></p>
<p>This is a <sub>Subscript Text</sub></p>
<p>This is a <del>Deleted Text</del></p>
<p>This is a <big>Larger Text</big></p>
<p>This is a <small>Smaller Text</small></p>
<img src="image.jpg" alt="Technical Class"/>
<p><img src="image.jpg" alt="Technical Class" width="500" height="200"/></p>
<p>
<img src="image.jpg" alt="Technical Class" width="500" height="200" border="3"/>
<img src="image.jpg" alt="Technical Class" width="500" height="200" border="3"/>
</p>
<p>
<img src="image.jpg" alt="Technical Class" width="500" height="200" border="3" />
<img src="image.jpg" alt="Technical Class" width="500" height="200" border="3" align="right"/>
</p>
<p>
<a href="https://google.com" target="_blank">
<img src="google.jpg" alt="google.com" target="_top"/>
</a>
</p>
<p><a href="#top">Goto Top</a></p>
</body>
</html>