backward up forward refresh
home
login
about

:

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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Header</title>
<style type="text/css">
*
{
    margin:0;
    padding:0;
    font-family:sans-serif;
}

img
{
    border:0;
}

#header
{
    background:#345071;
    text-align:center;
}

#header-center
{
    width:700px;
    margin:auto;
}

#header-right
{
    float:right;
    text-align:left;
    width:240px;
}

#header-left
{
    float:left;
    text-align:right;
    width:240px;
}

#header-right .middle
{
    margin-left:20px;
}

#header-left .middle
{
    margin-right:20px;
}

#header span
{
    display:block;
    padding:7px 0;
    margin:2px;
    height:16px;
    font-size:15px;
}

#header span a
{
    text-decoration:none;
    color:white;
    font-weight:bold;
}

#header span a img
{
    margin:-7px 0;
}

#header a:hover
{
    color:#bbb;
}

#header a:hover img
{
    opacity:0.75;
}

#header.v2 .middle
{
    margin:-5px 0;
}

#header.v2 #header-right span
{
    margin-left:35px;
}

#header.v2 #header-left span
{
    margin-right:35px;
}

#header.v2 #header-right .middle
{
    margin-left:0;
}

#header.v2 #header-left .middle
{
    margin-right:0;
}
</style>
</head>
<body>

<div id="header">
<div id="header-center">
<div id="header-left">
<span><a href="">Home <img src="img/icon-home.png" alt="" /></a></span>
<span class="middle"><a href="">Forums <img src="img/icon-forums.png" alt="" /></a></span>
<span><a href="">Help <img src="img/icon-help.png" alt="" /></a></span>
</div>
<a href="">
<img src="img/logo.png" alt="Warzone 2100" title="Main Page" />
</a>
<div id="header-right">
<span><a href=""><img src="img/icon-download.png" alt="" /> Download</a></span>
<span class="middle"><a href=""><img src="img/icon-addons.png" alt="" /> Addons</a></span>
<span><a href=""><img src="img/icon-devel.png" alt="" /> Development</a></span>
</div>
</div>
</div>

<div style="text-align:center;">
<button onclick="document.getElementById('header').className=''">Variant I</button>
<button onclick="document.getElementById('header').className='v2'">Variant II</button>
</div>

</body>
</html>
HTML document, size: 2.06 KB