-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHome.html
More file actions
73 lines (66 loc) · 2.13 KB
/
Home.html
File metadata and controls
73 lines (66 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="../Stylesheet-1.css">
<title>TV Series for you</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="../Navigation/Home.html"><img class="logo" src="Logo.jpg" alt="The logo of the website"></a>
</div>
<ul id="menu">
<li><a href="../Navigation/Signup.html">Sign up</a></li>
<li><a href="../Navigation/Login.html">Log in</a></li>
<li class="last"><a href="../Navigation/AllSeries.html">All series</a></li>
</ul>
</nav>
</header>
<!-- TOP RATED SHOWS -->
<div class="additional-content">
<div class="placeAdditional-content">
<ul>
<li id="TopRated">Top Rated Tv Series</li>
<li>
<a href="VampireDiaries.php"><img src="VampireDiaries.png" alt="The poster of Vampire Diaries"></a>
</li>
<li>
<a href="NCIS.php"><img src="NCIS.png" alt="The poster of NCIS"></a>
</li>
<li>
<a href="WalkingDead.php"><img src="WalkingDead.png" alt="The poster of The Walking Dead"></a>
</li>
<li>
<a href="BreakingBad.php"><img src="BreakingBad.png" alt="The poster of Breaking Bad"></a>
</li>
<li>
<a href="GossipGirl.php"><img src="GossipGirl.png" alt="The poster of Gossip Girl"></a>
</li>
</ul>
</div>
</div>
<!-- Tv show info -->
<div class="main-content">
<div class="placeMain-content">
<p> place content here </p>
</div>
</div>
<footer>
<center>
<p> This service is provided by TV SERIES. <br/>
Serievegen 21, 0001 Oslo Norway. Tel: 0047 12345678</p>
<p>Find us on social media:</p>
<div class="socialbox">
<a href="http://www.facebook.com"><img class="social" src="../TV-series/Facebook.jpg" alt="The logo of Facebook"></a>
</div>
<div class="socialbox">
<a href="http://www.twitter.com"><img class="social" src="../TV-series/Twitter.jpg" alt="The logo of Twitter"></a>
</div>
<div class="socialbox">
<a href="http://www.youtube.com"><img class="social" src="../TV-series/Youtube.jpg" alt="The logo of Youtube"></a>
</div>
</center>
</footer>
</body>
</html>