-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.99 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
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Document</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=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="title">
<h1>Happy Pyggy's Blog</h1>
</header>
<section class="container">
<article class="post">
<h2>POST TITLE 1</h2>
<p><b>Post description</b>
<br> This is an example post</p>
<img src="img/guitar.png" alt="Guitar image" width="400" />
<p><b>Article text:</b>
<br>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</article>
<article class="post">
<h2>THE CUTEST ONE!</h2>
<p>Dog in the city park</p>
<img src="img/golden.jpg" alt="Golden-dog image" width="400"/>
<p>Golden retriever at the park</p>
</article>
<article class="post">
<h2>AT THE TOP!</h2>
<p>Young woman on mountain top makes heart shape finge frame </p>
<img src="img/thetop.jpg" alt="Climber-girl image" width="400" />
<p>Young woman hiking on the mountain top makes a heart shape finger frame above her head to the beautiful landscape.</p>
</article>
<article class="post">
<h2>DOG IS STYLE!</h2>
<p>Cute Pit Bull Dog in Sweater and Heart Glasses</p>
<img src="img/swag-dog.jpg" alt="Swag-Dog image" width="400" />
<p>A cute pit bull dog smiling as she wears her Valentine's Day glasses and a sweater on a red background.
</p>
</article>
</section>
<footer>
<section>
<a href="#title">Go to the top</a>
<a href="mailto:[email protected]">Contact me here</a>
</section>
<p>Copyright 2022</p>
</footer>
</body>
</html>