-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2_columns.html
39 lines (39 loc) · 861 Bytes
/
2_columns.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
<!DOCTYPE html>
<html>
<head>
<title>2 Columns</title>
<meta name="author" content="Curlynoemi " />
<meta
name="description"
content="For more templates: https://github.com/curlynoemi"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
* {
box-sizing: border-box;
font-family: Arial;
margin: 0;
}
.col-2 {
float: left;
width: 50%;
padding: 50px;
}
@media screen and (max-width: 600px) {
.col-2 {
width: 100%;
}
}
</style>
</head>
<body>
<div>
<div class="col-2" style="background-color: #ffc6c6">
<h2>Column 1</h2>
</div>
<div class="col-2" style="background-color: #ffe0e0">
<h2>Column 2</h2>
</div>
</div>
</body>
</html>