45 lines
923 B
HTML
45 lines
923 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Margin and Padding exercise 2</title>
|
||
|
<style>
|
||
|
body {
|
||
|
background: #eee;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
.card {
|
||
|
width: 400px;
|
||
|
background: #fff;
|
||
|
margin: 16px auto;
|
||
|
}
|
||
|
|
||
|
.title {
|
||
|
background: #e3f4ff;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
background: #e3f4ff;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
background: #e3f4ff;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
background: white;
|
||
|
border: 1px solid #eee;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="card">
|
||
|
<h1 class="title">I'm a card</h1>
|
||
|
<div class="content">I have content inside me..lorem ipsum blah blah blah. Here's some stuff you need to read.</div>
|
||
|
<div class="button">and a <button>BIG BUTTON</button></div>
|
||
|
</div
|
||
|
</body>
|
||
|
</html>
|