-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.49 KB
/
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
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Styling Assessment</title>
<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=Ovo&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/build/app.css" />
</head>
<body>
<main class="card-custom">
<article class="container">
<div class="image-container">
<img src="./assets/images/cat.jpg" alt="Cat image" />
</div>
<hero class="text-container-card">
<div class="content">
<h1 class="mb-4">Our Cats</h1>
<p class="mb-4">
We are proud to serve a nationwide group of diverse cats and
kittens with a broad range of needs and goals. Our cats include
small cats, corporate cats, distinguished cats, street cats, alley
cats, adult cats managing their parent's assets, kitten
accumulators, ultra-high-net-worth families, institutions and
more. No matter what cat-egory you find yourself in, we have the
services and experience to help you.
</p>
<button class="btn-custom">Contact Us</button>
</div>
</hero>
</article>
</main>
</body>
</html>