forked from omardieh/css-basic-mediaQuery-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (44 loc) · 1.51 KB
/
Copy pathindex.html
File metadata and controls
55 lines (44 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<title>My Personal Web Page</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="Pers">
<div class="WC">
<header>
<h1>Welcome to My Personal Web Page</h1>
<div class="navList">
<!-- <nav class="navList"> this wasnt work with nav tag -->
<!-- so I use div tag -->
<!-- do I really have to use LIST? -->
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</div>
</header>
</div>
<main class="M">
<section class="A">
<h2>About Me</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed tempor
diam vel eros aliquam, vitae consequat tellus lacinia. Donec convallis
magna leo.
</p>
</section>
<section class="C">
<h2>Contact Information</h2>
<p>Email: info@example.com</p>
<p>Phone: 123-456-7890</p>
</section>
</main>
<footer class="F">
<p>© 2023 My Personal Web Page. All rights reserved.</p>
</footer>
</div>
</body>
</html>