-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (82 loc) · 2.9 KB
/
index.html
File metadata and controls
108 lines (82 loc) · 2.9 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<title>My First Website</title>
<style>
.btn {
color: #ffffff;
background-color: #2d63c8;
font-size: 19px;
border: 1px solid #2d63c8;
padding: 15px 50px;
cursor: pointer;
margin-bottom: 50px;
}
.btn:hover {
color: #2d63c8;
background-color: #ffffff;
}
.bottom-container {
background-color: #66bfbf;
padding: 50px 0 20px 0;
}
</style>
</head>
<body style="background-color: rgb(202, 247, 193); text-align: center;">
<!-- This is a comment -->
<h1>Hello World!</h1>
<p>This is a paragraph</p>
<p>This is to test my autosave extension</p>
<hr>
<!-- heading tag -->
<h1 style="border: dashed pink; width: 200px; margin: auto ;">Heading</h1>
<h2>Heading</h2>
<h3>Heading</h3>
<h4>Heading</h4>
<h5>Heading</h5>
<h6>Heading</h6>
<hr>
<!-- Ancher tag -->
<a href="https://9gag.com/">meme page</a>
<br> <!-- This tag is used to break line or for a new line -->
<a href="https://www.youtube.com/watch?v=HcOc7P5BMi4">Course Link</a>
<br>
<hr>
<!-- Image Tag -->
<img src="https://ichef.bbci.co.uk/news/1024/branded_news/7CC2/production/_118283913_29xp-meme-mobilemasterat3x-v3.jpg"
alt="A picture of a MEME" height="300" />
<br>
<hr>
<b>TO WRITE IN BOLD</b><br>
<i>to write in italic</i><br>
<u>to underline </u><br>
<p>This is a paragraph, and this word is <b>bold</b>, this is <i>italic</i> and <u>these word are underlined</u></p>
<big>This tag show big text</big>
<hr>
<small>This tag show small text</small>
<!-- this tag is called horizontal rular -->
<hr>
<!-- Subscript and Superscript Tag -->
<p>Subscrpit example: H<sub>2</sub>O</p>
<p>SuperScript example: A<sup>2</sup> + B<sup>2</sup></p>
<hr>
<!-- Pre tag : Used to display text as it is -->
<pre>
This is
an example of
pre tag.
It shows text as it is written in the IDE.
</pre>
<a class="btn" href="https://www.amazon.in/">amazon</a>
<div class="bottom-container">
<a class="footer-link" href="https://www.linkedin.com/">LinkedIn</a>
<a class="footer-link" href="https://twitter.com/">Twitter</a>
<a class="footer-link" href="https://sourz-101.github.io/MySite/">Website</a>
<p class="copyright">© 2022 Sourabh Singh.</p>
</div>
</body>
</html>