forked from ANKIT9761/2-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbbc.html
More file actions
50 lines (42 loc) · 700 Bytes
/
Copy pathbbc.html
File metadata and controls
50 lines (42 loc) · 700 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Technology - BBC News</title>
<style type="text/css">
.topbar{
width:1000px;
margin: 0 auto;
height: 40px;
}
#logo{
float: left;
margin-top: 5px;
margin-right: 10px;
}
.topbar-sec{
float: left;
border-left: 1px #CCCCCC solid;
height: 100%;
}
.signa{
width: 35px;
margin: 8px;
float: left;
}
#signtxt{
font-weight: bold;
position: relative;
top:12px;
}
</style>
</head>
<body>
<div class="topbar">
<img id="logo" src="bbcblock.png">
<div id="sign" class="topbar-sec">
<img class="signa" src="sign.jpeg">
<span id="signtxt">Sign in</span>
</div>
</div>
</body>
</html>