30 lines
704 B
HTML
30 lines
704 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Mixin Challenge</title>
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="section-one">
|
|
<h2 class="title">Section One</h2>
|
|
<a href="#" class="button-one">button</a>
|
|
</div>
|
|
|
|
<div class="section-two">
|
|
<h2 class="title">Section Two</h2>
|
|
<a href="#" class="button-two">button</a>
|
|
</div>
|
|
|
|
<div class="section-three">
|
|
<h2 class="title">Section Three</h2>
|
|
<p class="badge-one">badge</p>
|
|
<p class="badge-two">badge</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |