-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
58 lines (49 loc) · 1.72 KB
/
project.html
File metadata and controls
58 lines (49 loc) · 1.72 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
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Advanced Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<!-- Logo Section -->
<div class="logo-container">
<img src="https://play-lh.googleusercontent.com/1-hPxafOxdYpYZEOKzNIkSP43HXCNftVJVttoo4ucl7rsMASXW3Xr6GlXURCubE1tA=w3840-h2160-rw" alt="Logo">
</div>
<p>Welcome to our google website!</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Services</a>
<a href="#">Contact</a>
</nav>
<section>
<h2> MAIN SCREEN </h2>
<p>This is a basic model of searching website and storing.</p>
<!-- Image Section -->
<div class="image-container">
<img src="https://thumbs.dreamstime.com/b/aerial-view-lago-antorno-dolomites-lake-mountain-landscape-alps-peak-misurina-cortina-di-ampezzo-italy-reflected-103752677.jpg" alt="Placeholder Image">
</div>
<!-- Search Bar Section -->
<div class="search-container">
<form id="searchForm">
<label for="searchInput">Search:</label>
<input type="text" id="searchInput" name="searchInput">
<button type="submit">Submit</button>
</form>
</div>
</section>
<!-- Stored Results Section -->
<section id="storedResultsSection">
<h2>Stored Results</h2>
<ul id="storedResultsList"></ul>
</section>
<footer>
<p>© 2023 Your Website. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>