-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 958 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#heading{
font-size: 2rem;
font-weight: 300;
}
.box{
border-radius: 30px;
margin: 10rem;
}
</style>
</head>
<body style = " background-color: red">
<div class="box"style = " background-color: blue; height: 5rem; margin: 5rem; padding: 1rem 3rem 3rem 5rem;">
<h2 id="heading">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus, error!</h2>
</div>
<div class="container">
<div id="square1">1</div>
<div id="square2">2</div>
<div id="square3">3</div>
</div>
<div class="container">
<div class="square">1</div>
<div class="square">2</div>
<div class="square">3</div>
</div>
</body>
</html>