-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (30 loc) · 1.17 KB
/
index.php
File metadata and controls
37 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="blog.css" rel="stylesheet">
<title>Hauptseite</title>
</head>
<body>
<Header>
<h1>Noé's Blog Webseite - Hauptseite</h1>
</Header>
<nav class="grid-item-nav">
<ul class="flex-container">
<li class="flex-item blogs"><a href="blog.php" class="Navigation">Blogs</a></li>
<li class="flex-item blogs"><a href="blogErstellen.php" class="Navigation">Blog erstellen</a></li>
<li class="flex-item andere-blogs"><a href="andereBlogs.php" class="Navigation">Andere Blogs</a></li>
</ul>
</nav>
</header>
<h1>Hier kannst du Blogs von anderen Leuten lesen und selber schreiben.</h1>
<a href="https://www.css.ch/de/ueber-css/karriere/berufsbildung.html">
<img id="css" src="Css-versicherung-logo.svg.png">
</a>
<footer>
<h3 class="footerInfos">Noé Farese | November 2022 | Basislehrjahr</h3>
</footer>
</body>
</html>