-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 859 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel Itinerary Application</title>
<link rel="stylesheet" href="public/styles.css">
</head>
<body>
<!-- Your content goes here -->
<header>
<div class="logo">Your Agency Logo</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Itineraries</a></li>
<li><a href="#">About</a></li>
<!-- Add more navigation items if needed -->
</ul>
</nav>
</header>
<main>
<h1>Create a New Itinerary</h1>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<!-- Add more form fields as needed -->
<button type="submit">Create</button>
</form>
</main>
</body>
</html>