-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
68 lines (51 loc) · 1.61 KB
/
home.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
<doctype!>
<html>
<head>
<title>Home Page</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/homeStyle.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<style>
#footerC{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: orange;
text-align: center;
}
#contentH1{
background-image:url(images/home.png);
}
</style>
</head>
<body id="contentH1" >
<div class="headerH1"><!..navigation bar..>
<img id="logoH1" src="images/logopng.png" alt="logo" >
<div id="navigationbar">
<ul>
<li><a href="team.html">Team</a></li>
<li> <a href="gallery.html">Gallery</a></li>
<li> <a href="siteMap.html">Sitemap</a></li>
<li> <a href="quiz.html">Quiz</a></li>
<li> <a href="products.html">Product</a></li>
<li> <a href="home.html">Home</a></li>
</ul>
</div>
</div>
<header>
<div class="title">
<h1>WORLD OF FILMS</h1>
</div>
<div class="button">
<a href="feedback.html" class="btn"><b>FEEDBACK<b></a><!..referring to the java script comment system..>
<a href="https://www.youtube.com/results?search_query=movies" class="btn"><b>WATCH VIDEOS</b></a><!..watch movies on youtube..>
</div>
</header>
<div id=footerC>
<p>Posted by: P.G.Charani Hasara</p>
<p> <a href="student2Cv.html">
Page is created by Student 2</a></p>
</div>
</body>
</html>