This repository was archived by the owner on Jan 14, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 1.54 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 1.54 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>My Blog</title>
<link
href="//fonts.googleapis.com/css?family=Roboto:400,500,300"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<h1>SuperCare Services</h1>
<h3>Childcare you can trust</h3>
</header>
<main>
<article class="card">
<img src="img/card1.jpeg" alt="nanny" />
<h2>Evening Sitters Nanny</h2>
<summary>
Reliable, local childcare ready to help you reclaim your social life.
</summary>
</article>
<article class="card">
<img src="img/card3.jpg" alt="nanny" />
<h2>After-school-Nanny</h2>
<summary>
Fun, energetic and bubbly sitters to keep your kids entertained till
you get home.
</summary>
</article>
<article class="card">
<img src="img/card2.jpg" alt="nanny" />
<h2>Daytime Help Nanny</h2>
<summary>
Helping you manage your career, or just for an extra pair of hands.
</summary>
</article>
</main>
<footer>
<h1>Contact us:</h1>
<p>Phon Number: +44 7809879865</p>
<a href="mailto:your@address.com"> Email: SuperCare-services@gmail.com</a>
</footer>
</body>
</html>