-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<title>Landing Page</title>
<link rel="stylesheet" href="styling/style.css">
</head>
<body>
<header>
<div class="wrapper">
<nav>
<a href="./pages/page2.html">Page 2</a>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Google</a>
</nav>
<div class="content">
<h1>Welcome to my first HTML page!</h1>
<p>Welcome to my webpage. Explore the various animal species and their distinctive traits right here.
Today, I'll be focusing on three species that are completely unrelated to one another: cows, skunks, and whales.
</p>
</div>
</div>
</header>
<main>
<div class="flexAnimals">
<img src="./img/pic1.jpeg" alt="whale" />
<img src="./img/pic3.jpeg" alt="cow"/>
<img src="./img/pic2.jpeg" alt="skunk"/>
</div>
</main>
<footer>
<div class="footer">
<p>Made with 🤍 by Claudia-Cosmina Stanciu for CFG © 2023</p>
</div>
</footer>
</body>
</html>