-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·29 lines (28 loc) · 1.03 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Amin Sabermanesh CS50 Project 0</title>
</head>
<body>
<div class="bar">
<a class="imagesearch" href="./img-index.html">Image Search</a>
<a class="advancesearch" href="./adv-index.html">Advance Search</a>
</div>
<div class="image">
<img class="picsearch" src="./cs50-black.PNG" alt="cs50 search logo" width="270">
<h2 class="textpicsearch">Amin's CS50 search</h2>
</div>
<div class="search">
<form class="gsearch" action="https://www.google.com/search">
<input class="searchfild" type="text" placeholder="search" name="q">
<div>
<input class="searchbutton" type="submit" value="Google Search">
<input class="searchbutton" type="submit" value="I'm Feeling Lucky" name="sa">
</div>
</form>
</div>
</body>
</html>