responsive-layouts/challenge3/index.html

30 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2025-01-06 21:53:59 -05:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Responsive Layouts Challenge</title>
<link href="style.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div class="hero">
<h1 class="tagline">Responsive layouts don't have to be a struggle</h1>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Repellat
culpa vitae rerum laboriosam hic ipsam, distinctio blanditiis rem
deserunt voluptatibus non obcaecati unde explicabo quod saepe
voluptates magnam aut accusantium.
</p>
<button type="">I WANT TO LEARN</button>
</div>
</div>
</body>
</html>