-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGrids.html
More file actions
65 lines (65 loc) · 2.08 KB
/
Copy pathGrids.html
File metadata and controls
65 lines (65 loc) · 2.08 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
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
<!DOCTYPE html>
<html lang="en" class="main-bg">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wilkommenspage</title>
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Homepage</a></li>
<li><a href="uebermich.html">Über mich</a></li>
<li><a href="Formular.html">Formular</a></li>
<li><a href="Bilder.html">Bilder</a></li>
<li><strong>Grids</strong></li>
</ul>
</nav>
</header>
<main>
<div class="grid-container">
<div class="grid-item grid-header">
<h4>Header</h4>
<p>
This is the Header. It represents the Top Object of the Website and
its the Object where normaly People would write the Title of the
Topic or something else
</p>
</div>
<div class="grid-item grid-nav">
<h4>Navigation</h4>
<ul>
<li><a style="user-select: none">Home</a></li>
<li><a style="user-select: none">About</a></li>
<li><a style="user-select: none">Services</a></li>
<li><a style="user-select: none">Contact</a></li>
</ul>
</div>
<div class="grid-item grid-main">
<h4>Main</h4>
<p>
This is the Main Object of the Website. It represents the Main
Content of the Website
</p>
</div>
<div class="grid-item grid-aside">
<h4>Asside</h4>
<p>
This is the Asside Object of the Website. Here you can Put something
else like the Article of the Day or a Picture :)
</p>
</div>
<div class="grid-item grid-footer">
<h4>Footer</h4>
<p>
Welcome to the Footer Section. The normal use for it is when you
want to put you're Instagram links or the Support Button. That up to
you .
</p>
</div>
</div>
</main>
</body>
</html>