forked from msucomputerclub/Front-End-Workshop-Spring2025
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (52 loc) · 2.24 KB
/
index.html
File metadata and controls
57 lines (52 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head> <!-- Does not appear in your actual html site -->
<meta charset="UTF-8" /> <!-- Used for encoding the text -->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="index.css" /> -->
<title>Front-End Workshop</title> <!-- Title that appears in browser. Metadata used for search engine optimization -->
</head>
<body> <!-- Starting here everything will appear in the site -->
<header>
<a href="/">
<div class="logo">Logo</div>
</a>
<ul class="link-container">
<li><a href="#home" class="link"> Home </a></li>
<li>
<a href="#about" class="link"> About </a>
</li>
<li>
<a href="/practice.html" class="link"> Practice.html </a>
</li>
</ul>
</header>
<main> <!-- Main is used typically for screen readers and is not necessary, but good practice -->
<section id="home">
<h1>Home</h1>
<div>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</div>
</section>
<section id="about">
<h1>About</h1>
<div>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla
pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</div>
</section>
</main>
</body>
</html>