-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="A basic web page" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Learning_platform</title>
<style></style>
</head>
<body style="color: royalblue; background-color: cyan">
<h2>Surendra's <i>Website</i></h2>
<br />
<img src="welcome.jpg" alt="welcome" />
<!--break statement to get space-->
<p><big>There gonna be some </big><b>awesome stuff</b> here</p>
<!--Similarly small tag-->
<hr />
<hr />
<!--Horizontal row tab(to get horizontal line)-->
<p style="color: blue; background-color: crimson">
Some thing important is Yet to come
</p>
<p>H<sub>2</sub>O , 10<sup>2</sup></p>
<a href="https://www.google.com"><h1>Google HomePage</h1></a>
<a href="http://youtube.com" target="_blank">Youtube</a>
<a href="welcome.jpg" target="_blank">Welcome</a>
</body>
</html>