forked from Migracode-Barcelona/htmlcss-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (45 loc) · 2.37 KB
/
index.html
File metadata and controls
50 lines (45 loc) · 2.37 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
<!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 family</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><span class="first"> The Best Activities</span>
<span class="segond">To Do In Family</span></h1>
</header>
<main>
<section class="article">
<article >
<div class="picnic">
<h3>Plan a Picnic</h3>
<p>If your family misses picnics in the park, you can bring this summertime activity into your backyard instead! Start by preparing a traditional picnic lunch like sandwiches, fruit, and potato chips. Load everything into a basket and bring it to your picnic destination, whether it’s a blanket on the lawn or a patio table. Your family will get fresh air and a dose of vitamin D!</p>
</div>
<div class="picnic">
<h3>Host a Four-Square Tournament</h3>
<p>This outdoor family activity gets everyone moving! You'll need four players and a large rubber ball. Draw a 12" x 12" square on your driveway. Divide into four squares—A, B, C, and D—and have one player stands in each square. The player in A starts by bouncing the ball in his square, then batting it with open hands into another square. That player must hit the ball into another square. When one player misses or hits the ball out of bounds, he moves to D, the players behind him advance, and you begin again.</p>
</div>
<div class="picnic">
<h3>Cooking</h3>
<p>Don’t forget about indoor family activities for cold or rainy days. One idea is baking or cooking together. Kids especially love making pie crusts, biscuits, and pizza because they can squish the dough with their fingers. When the baking is done, sit back and enjoy a bite alongside a refreshing drink.</p>
</div>
</section>
</main>
<footer>
</footer>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
</body>
</html>