Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 40 additions & 4 deletions Frontend/Same Copy of Some famous Web Pages/Google_Page_copy.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,45 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google</title>
</head>
<body>

<header>
<div>
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_light_color_92x30dp.png" alt="Google Logo">
</div>
<div>
<input type="text" id="search-bar" placeholder="Search Google">
<button id="search-button">Search</button>
</div>
</header>
<main>
<div>
<h2>Search Results</h2>
<div class="search-result">
<a href="#">Example Search Result Title</a>
<p>This is a brief description of the search result.</p>
</div>
<div class="search-result">
<a href="#">Another Result Title</a>
<p>Another description for a different search result.</p>
</div>
<!-- More search results go here -->
</div>
</main>
<footer>
<div>
<a href="#">Advertising</a>
<a href="#">Business</a>
<a href="#">About</a>
</div>
<div>
<a href="#">Privacy</a>
<a href="#">Terms</a>
<a href="#">Settings</a>
</div>
</footer>
</body>
</html>
</html>