-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.68 KB
/
index.html
File metadata and controls
47 lines (47 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<header>
<h2 class="logo">
<img src="logo.png" alt="Logo" width="50" height="50">
<span>DESIGN DYNAMO</span>
</h2>
<nav class="navigation">
<div class="topnav">
<a href="index.html">Home</a>
<a href="register.html">Register</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
</div>
</nav>
</header>
<main>
<h1>Welcome to Project 1.1</h1>
<p>This is a simple HTML template for a project.</p>
<section id="about">
<h2>About Project 1.1</h2>
<p>This project is designed to showcase the features and functionality of our latest development efforts.</p>
</section>
<section id="features">
<h2>Features</h2>
<ul>
<li>Feature 1: Description of feature 1.</li>
<li>Feature 2: Description of feature 2.</li>
<li>Feature 3: Description of feature 3.</li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions, feel free to reach out to us at <a href="mailto:philip10simiyu@gmail.com">philip10simiyu@gmail.com</a></p>
</section>
</main>
</body>
</html>