-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta.html
54 lines (49 loc) · 1.4 KB
/
meta.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
<!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">
<meta http-equiv="refresh" content="10">
<title>Document</title>
</head>
<body>
<hr>
<img src="C:\Users\DEV\Pictures\img.jpg">
<hr>
<!-- Navigation -->
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<!-- Home Section -->
<section id="home">
<h1>Welcome to My Professional Website</h1>
<p>Showcasing my skills and achievements</p>
</section>
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<p>I'm a passionate professional in the field...</p>
</section>
<!-- Portfolio Section -->
<section id="portfolio">
<h2>Portfolio</h2>
<!-- Your portfolio items go here -->
</section>
<!-- Contact Section -->
<section id="contact">
<h2>Contact Me</h2>
<!-- Contact form or information goes here -->
</section>
<!-- Footer -->
<footer>
<p>© 2024 DEV. All rights reserved.</p>
</footer>
<hr>
</body>
</html>