You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
644 B
28 lines
644 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width"/>
|
|
<style>
|
|
.box1 {
|
|
width: 100px;
|
|
border-color: purple;
|
|
border-width: 10px;
|
|
border-style: solid;
|
|
padding: 20px 20px;
|
|
margin: 20px 20px;
|
|
}
|
|
.box2 {
|
|
border-color: powderblue;
|
|
border-width: 20px;
|
|
border-style: solid;
|
|
padding: 50px 50px;
|
|
margin: 100px 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box1">Box1</div>
|
|
<div class="box2">Box2</div>
|
|
</body>
|
|
</html> |