-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
62 lines (55 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css" type="text/css" />
<<<<<<< HEAD
<title>Document</title>
<style>
*{
box-sizing: border-box;
}
.column{
float: left;
width: 50%;
padding: 5px;
}
.row::after{
content: "";
clear: both;
display: table;
}
@media screen and (max-width: 200px)
{
.column {
width: 50%;
}
</style>
=======
<title>Document</title>
>>>>>>> 8813cd2f46e887eb4f1fc1de4941abe04ebf7a12
</head>
<body>
<div class="div1">
<p class="text">This is a practice branch</p><br>
<ul>
<li class="one">first</li>
<li class="two">second</li>
<li class="three">third</li>
<li class="four">forth</li>
</ul>
</div>
<button class="btn btn--first></button>
<div class="row">
<div class="column">
<img class="dog" src="imgdog.png" alt="image of dog"/>
</div>
<div class="column">
<img class="dog" src="imgdog.png" alt="image of dog"/>
</div>
<div>
<img class="pan" src="panda.jpg" alt="panda"/>
</div>
</body>
</html>