-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (49 loc) · 1005 Bytes
/
index.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
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<title>Tutorial</title>
</head>
<>
<!--paragraph tags-->
<p>* This is a parapgraph</p>
<p>* This is a parapgraph 2</p>
<!--heading tag-->
<h1>heading1</h1>
<h2>heading2</h2>
<h3>heading3</h3>
<h4>heading4</h4>
<h5>heading5</h5>
<h6>heading6</h6>
<!--inserting image-->
<img src="img 1.jpg" alt="computer" width="100px" height="100">
<br>
<img src="img 2.jpg" alt="mobile" width="200">
<br>
<img src="img 3.jpg" alt="laptop and mobile" width="300">
<!--creating order list-->
<ol> Types of Drinks
<li>coffee</li>
<li>tea</li>
<li>milk</li>
</ol>
<!--creating un ordered list-->
<ul> Types of Drinks
<li>coffee</li>
<li>tea</li>
<li>milk</li>
</ul>
<!--inserting hyperlink-->
<p>
<a href="/">hyperlink</a>
</p>
<p>
<a href="https://www.youtube.com">youtube</a>
</p>
<p>
<a href="mailto:rion.mhadhey@gmail.com">rion.mhadhey@gmail.com</a>
</p>
<p>
<a href="tel:+639912319149">09912319149</a>
</p>
<body>
</html>