This repository has been archived by the owner on Apr 25, 2022. It is now read-only.
forked from PReichetanz/muc-web-22-1-css-structure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (56 loc) · 1.95 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
<!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 rel="stylesheet" href="styles/main.css" />
<title>CSS Structure</title>
</head>
<body>
<header class="header">
<h1>CSS Structure</h1>
<h2 class="greeting hidden">Welcome to this session!</h2>
<img
class="image"
src="https://source.unsplash.com/random/300x200"
alt="Random Picture"
/>
<nav class="navigation">
<a class="nav-button" href="#">Explanation</a>
<a class="nav-button" href="#">Examples</a>
<a class="nav-button" href="#">Further Reading</a>
</nav>
<button class="button">Click me for fun!</button>
<button class="button big-button">Click me for more fun!</button>
</header>
<main>
<section class="explanation">
<h2>Explanation</h2>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Sapiente
blanditiis, nobis alias dolores itaque magni molestiae odit maxime ad
exercitationem perspiciatis assumenda est doloremque fuga adipisci. Ut
laudantium beatae accusantium.
</p>
</section>
<section class="examples">
<h2>Examples</h2>
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Et itaque,
consectetur sapiente quasi necessitatibus qui consequatur distinctio
ab libero fugiat! Magnam, harum enim itaque facere error numquam rerum
nihil aliquid?
</p>
</section>
<section class="links">
<h2>Further Reading</h2>
<ul>
<li><a href="https://developer.mozilla.org/en-US/">MDN</a></li>
<li><a href="https://slack.com">Slack</a></li>
<li><a href="https://zoom.us/">Zoom</a></li>
</ul>
</section>
</main>
</body>
</html>