-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINDEX.HTML
73 lines (70 loc) · 2.16 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<title>Aklinkworld || Information Technology ||</title>
</head>
<body>
<a href="https://aklinkworld.blogspot.com">This is new page</a><!--anchor tag--><!--absolute path this means An absolute path is usually used to specify the path to a file that is located on another network resource. It is a complete URL to a file or page. In the absolute path, the protocol is first specified, followed by the domain name (site name)-->
<br>
<a href="E:\HTML\udemy\newpage.html">This is new page created by me</a> <!--relative path this means
Relative links show the path to the file or refer to the file itself. A relative URL is useful within a site to transfer a user from point to point within the same domain. Absolute links are good when you want to send the user to a page that is outside of your server. --><br>
<a href="register.html">register</a>
<h1>This is heading h1</h1>
<h1>Author Intro:</h1>
<P> Hello there, This is akshay shriwaskar. and I'm web developer.</P>
<!--LIST TAG-->
<ol>
<li>phone</li>
<li>laptop</li>
<li>pc</li>
<li>tablet</li>
</ol>
<ul>
<li>phone</li>
<li>laptop</li>
<li>pc</li>
<li>tablet</li>
</ul>
<ul>
<li>phone</li>
<ul><li>Iphone</li>
<img src="https://store.storeimages.cdn-apple.com/4668/as-images.apple.com/is/iphone-13-pro-blue-select?wid=470&hei=556&fmt=jpeg&qlt=95&.v=1631652954000" width="100px" height="100px" alt="Iphone logo">
<hr>
<li>realme</li>
<img src="https://www.gizmochina.com/wp-content/uploads/2020/09/Realme-7-500x500.jpg" height="100px" width="100px"alt="realme logo">
<hr>
</ul>
<li>laptop</li>
<ul>
<li>DELL</li>
<LI>HP</LI>
<LI>LENOVO</LI>
<LI>ACER</LI>
<LI>ASUS</LI>
<LI>MACBOOK</LI>
<LI>SONY</LI>
<LI>TOSHIBA</LI>
</ul>
<LI>PC</LI>
<OL><li>DELL</li>
<LI>HP</LI>
<LI>LENOVO</LI>
<LI>ACER</LI>
<LI>ASUS</LI>
<LI>MACBOOK</LI>
<LI>SONY</LI>
<LI>TOSHIBA</LI>
</OL>
<li>tablet</li>
<UL>
<LI>SAMSUNG</LI>
<LI>IPHONE</LI>
</UL>
</ul>
</ul>
<!--SELF CLOSING TAG-->
<H1> THIS IS HEADING</H1>
<BR><!--<BR> IS A SELF CLOSING TAG-->
<hr> <!--<hr> is a self closing tag-->
</body>
</html>