-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 1 KB
/
index.html
File metadata and controls
61 lines (56 loc) · 1 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
<!DOCTYPE html>
<html lang="en-UK">
<head>
<title>1 Row, 2 Column Media Query Script</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/styles.css">
<style>
@media screen and (min-width: 1px) {
header {
margin: auto;
width: 100%;
-webkit-column-count: 1;
-moz-column-count: 1;
column-count: 1;
}
header-left {
float: center;
text-align: center;
}
header-right {
float: center;
text-align: center;
font-style: oblique;
}
}
@media screen and (min-width: 1200px) {
header {
margin: auto;
width: 90%;
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
}
header-left {
float: left;
}
header-right {
float: right;
font-style: oblique;
}
}
</style>
</head>
<body>
<div id="container">
<header>
<header-left>
<h1>Your Company Name</h1>
</header-left>
<header-right>
<h2>This is an example for placement of a slogan.</h2>
</header-right>
</header>
</div>
</body>
</html>