-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (80 loc) · 3.1 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>BBC</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/home/lotanna/Udemy/Udemy_work/style.css" rel="stylesheet" type="text/css" media="screen" href="main.css" />
<script src="main.js"></script>
</head>
<body>
<div id="container">
<div id="topbar">
<div class="fixedwidth">
<div id="logodiv">
<img src="/home/lotanna/Udemy/Udemy_work/images/bbclogo.png">
</div>
<div id="signindiv">
<img src="/home/lotanna/Udemy/Udemy_work/images/signin.png"> Sign In
</div>
<div id="topmenudiv">
<ul>
<li>Home</li>
<li>News</li>
<li>Sport</li>
<li>Weather</li>
<li>Shop</li>
<li>Travel</li>
<li>Capital</li>
<li>More...</li>
</ul>
</div>
<div id="searchdiv">
<input type="text" placeholder="Search">
</div>
</div>
</div>
</div>
<div class="break"></div>
<div id="newsbar">
<div class="fixedwidth">
<p id="newsheader">NEWS<span id="uk">UK</span></p>
<div id="rss">
RSS <img src="/home/lotanna/Udemy/Udemy_work/images/rss.png">
</div>
<div class="break"></div>
<div id="topicmenu">
<ul>
<li>Home</li>
<li>World</li>
<li class="selected">England</li>
<li>Africa</li>
<li>Nigeria</li>
<li>United States</li>
<li>Politics</li>
<li>Business</li>
<li>Health</li>
<li>Education</li>
<li>Sci/Enviroment</li>
<li>Technology</li>
<li style="border-right:none">Entertainment & Art</li>
</ul>
</div>
</div>
</div>
<div class="break"></div>
<div id="content">
<div class="fixedwidth">
<h1>Welcome to BBC.com<span class="date">Sunday, 25 November</span></h1>
<div class="headlineimg">
<img src="/home/lotanna/Udemy/Udemy_work/images/bigimg.png">
</div>
<div class="newsimage">
<img src="/home/lotanna/Udemy/Udemy_work/images/bigimg2.png">
</div>
</div>
</div>
</div>
</body>
</html>