-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (77 loc) · 3.1 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
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
<!--
MIT License
Copyright (c) 2023 kritomas
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-->
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Birdwatchen</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Here is our main header that is used across all the pages of our website -->
<div class="background">
<header>
<img src="twitter-png-twitter-icon-1600.png" alt="Birdwatchen logo">
<h1>Birdwatchen</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Get started</a></li>
<li><a href="#">Photos</a></li>
<li><a href="#">Gear</a></li>
<li><a href="#">Forum</a></li>
</ul>
</nav>
</div>
<!-- Here is our page's main content -->
<main class="background">
<!-- It contains an article -->
<article>
<h2>Wilkommen</h2>
<p>
Wilkommen to our fake birdwatchen site. If this were a real site, it would be the ideal place to come to learn more about birdwatchen, whether you are a beginner looking to learn how to get into birden, or an expert wanting to share ideas, tips, and photos with other like-minded folks.
</p>
<p>
So don't waste time! Get what you need, then turn off that computer and get out into the great outdoors!
</p>
</article>
<!-- the aside content can also be nested within the main content -->
<aside>
<h2>Favourite photos</h2>
<div class="row">
<div class="column">
<img src="flappy-bird-icon-faby-1599843164.jpeg" alt="birdus flapus">
<img src="th-4041284722.jpeg" alt="birdus angerus">
</div>
<div class="column">
<img src="maxresdefault-3162014005.jpeg" alt="duckus internetus">
<img src="maxresdefault.jpg" alt="duckus tankus">
</div>
</div>
</aside>
</main>
<!-- And here is our main footer that is used across all the pages of our website -->
<footer>
<p>©Copyright kritomas 2023. This website is licensed under the <a href="LICENSE.txt">MIT License</a></p>
</footer>
</body>
</html>