-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (68 loc) · 2.26 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
74
75
76
<!Doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>
Introduction to me!
</title>
<style>
*{
padding:;
margin: 0;
}
body { color: rgb(10, 228, 25);
background-image: url(space.webp);
}
.home {
color: white;
background-color: rgb(15, 233, 19);}
.menu-bar {
color: lawngreen;
}
</style>
</head>
<body>
<center><h1><p class="home">Home Page</p></h1></center>
<!--Menu_bar Section-->
<div class="menu-bar">
<center><h2>
<p><a href="#"> Home </a></p>
<p><a href="#"> Gallery</a></p>
<p><a href="#"> Contact Me</a></p>
<p><a href="./iframeAudioVideo.html">Multimedia</a></p>
<p><a target="_blank" href="./login.html"> Login</a></p>
<p><a target="_blank" href="table.html">Student Table Data</a></p></h2>
</center>
</div>
<!--DAY_02-->
<div class="bullet">
<ol start="4" type="a">
<li> Shahin</li>
<li> Ruhi</li>
<li> Tarek</li>
</ol>
<ul type="squre">
<LI> Raza</LI>
<li>Titas</li>
<li> Shahin<ul type="square"><li>basic html</li>
<li>basic css</li></ul></li>
</ul>
</div>
<!--DAY_01-->
<!--Heading Section-->
<center>
<h1 >Welcome to <span >CyberWorld!</span></h1>
<h2>Welcome to CyberWorld!!</h2>
<h3>Welcome to CyberWorld!</h3>
<h4>Welcome to CyberWorld!</h4>
<h5>Welcome to Universe!</h5>
<h6>Welcome to Universe!</h6></center>
<!--Paragraph Section-->
<center><p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Veritatis neque ducimus repudiandae voluptate autem earum incidunt optio, molestias ut maiores, velit odio! Ab tempora reiciendis adipisci dolor aperiam corrupti eaque.
<a href="./about.html" type="_blank"> Read More...</a></p></center>
<dl>
<dt>Protocols</dt>
<dd>Protocols is set of rules.</dd>
</dl>
</body>
</html>