This repository has been archived by the owner on Jan 20, 2023. It is now read-only.
forked from ntijoh-ola-lindberg/wu1920-projekt2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanimal-articles.html
102 lines (89 loc) · 4.03 KB
/
animal-articles.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Animal Universe</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body class="animal-a">
<nav class="navbar">
<div class="hamburger-menu">
<img id="logo" src="./img/Icon/AU.png" alt="Animal Universe logo">
</div>
<ul class="nav-list">
<li class="nav-item">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="animal-articles.html" class="nav-link">Animal Articles</a>
</li>
<li class="nav-item">
<a href="create-your-own-article.html" class="nav-link">Create your own Article</a>
</li>
<li class="nav-item">
<a href="about-us.html" class="nav-link">About us</a>
</li>
</ul>
</nav>
<header>
<a href="index.html" class="remove-blue"><h1 class="underline" id="AU">Animal Universe</h1></a>
</header>
<article>
<h1 class="underline rubrik" >Animal articles</h1>
<div class="div-grid">
<a href="corgi.html" class="div-item1 div-item remove-blue remove-underline">
<div>
<h2 class="underline text-align">Corgi</h2>
<img class="img-div img" src="./img/corgi.jpg" alt="corgi">
<p>Information about corgisss.</p>
</div>
</a>
<a href="#" class="div-item2 div-item remove-blue remove-underline">
<div>
<h2 class="underline text-align">Cat</h2>
<img class="img-div img" src="./img/cat.jpg" alt="corgi">
<p >Information about cats. UNDONE</p>
</div>
</a>
<a href="#" class="div-item3 div-item remove-blue remove-underline">
<div>
<h2 class="underline text-align">Seal</h2>
<img class="img-div img" src="./img/seal.jpg" alt="corgi">
<p >Information about seals. UNDONE</p>
</div>
</a>
<a href="#" class="div-item4 div-item remove-blue remove-underline">
<div>
<h2 class="underline text-align">Moose</h2>
<img class="img-div img" src="./img/moose.jpg" alt="corgi">
<p >Information om mooses. UNDONE</p>
</div>
</a>
<a href="#" class="div-item5 div-item remove-blue remove-underline">
<div>
<h2 class="underline text-align">Wolf</h2>
<img class="img-div img" src="./img/wolf.jpg" alt="corgi">
<p >Information about wolves. UNDONE</p>
</div>
</a>
<a href="#" class="div-item6 div-item remove-blue remove-underline">
<div>
<h2 class="underline text-align">Fox</h2>
<img class="img-div img" src="./img/fox.jpg" alt="corgi">
<p >Information about foxes. UNDONE</p>
</div>
</a>
</div>
</article>
<aside>
<h2 class="underline">Terms of Service</h2>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Facere est dolores molestias sequi quidem inventore dolor possimus, recusandae eligendi nesciunt perferendis facilis praesentium debitis ipsam exercitationem quibusdam! Ratione, culpa necessitatibus.</p>
</aside>
<footer>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Magnam quod, sunt aliquam velit tempore veritatis accusantium nostrum! Cum sapiente ipsum accusamus, aut totam delectus tenetur voluptate facere, aspernatur quos ut!</p>
</footer>
<script src="./js/index.js"></script>
</body>
</html>