-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (67 loc) · 2.29 KB
/
index.html
File metadata and controls
73 lines (67 loc) · 2.29 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
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
<!-- HTML - hypertext markup language -->
<!-- Headings -->
<!-- geolocation, canvas,svg -->
<html>
<head>
<title>HTML Demo</title>
</head>
<body>
<header>
<a href="home.html">Home</a>
<a href="home.html">About</a>
<a href="home.html">Contact</a>
<hr />
</header>
<main>
<!-- inline tags -->
<!-- block tags -->
<h1>Heading 1 </h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>
<p>
It is a long established that a reader will be distracted by the readable content of
a page when looking at
its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as
opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing
packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem
ipsum'
will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes
by
accident, sometimes on purpose (injected humour and the like).
</p>
<!-- span is inline -->
<span>
<strong>Hello HTML</strong>
<i>Italic</i>
<em>EM tag</em>
</span>
<!-- div is block -->
<div>
<strong>Hello HTML</strong>
<i>Italic</i>
<em>EM tag</em>
</div>
<!-- attribute, property -->
<a href="www.google.com">Google</a>
<a href="home.html" target="_blank">Home </a>
<img width="250" height="200"
src="https://images.unsplash.com/photo-1600716051809-e997e11a5d52?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Nnx8c2FtcGxlfGVufDB8fDB8fA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=60" />
<a href="home.html">
<img width="200" height="200" src="img1.jpeg" />
Go to home page
</a>
</main>
<footer>
<hr />
<a href="home.html">Home</a>
<a href="home.html">About</a>
<a href="home.html">Contact</a>
<div>
©2021 example.com
</div>
</footer>
</body>
</html>