-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 1.39 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
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Search</title>
</head>
<body>
<div class="link">
<a href="https://www.google.co.th/imghp" class="link">Image</a>
</div>
<div class="container" id="box">
<a href="https://google.com"><img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" style="margin-bottom: 10px;"></a>
<form action="https://google.com/search">
<input type="text" name="q" style="width: 50%; border-radius:10px; border-width: 1px; height: 35px;" placeholder="Type Your Search Here" id="search_box">
<br>
<input type="submit" class="btn btn-light button" value="Google Search" id="button">
<input type="submit" class="btn btn-light button" value="I'm Feeling Lucky" id="button">
</form>
</div>
<div class="disc">
Disclaimer: CS50's Web Programming with Python and JavaScript Course
<br>
Project 0: Search
</div>
</body>
</html>