-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompany.html
49 lines (44 loc) · 1.3 KB
/
company.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Professional Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- 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>© 2023 Your Name. All rights reserved.</p>
</footer>
</body>
</html>