-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmymdb.php
55 lines (49 loc) · 2.08 KB
/
mymdb.php
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
<!DOCTYPE html>
<html>
<head>
<title>My Movie Database (MyMDb)</title>
<meta charset="utf-8" />
<link href="https://webster.cs.washington.edu/images/kevinbacon/favicon.png" type="image/png" rel="shortcut icon" />
<!-- Link to your CSS file that you should edit -->
<link href="bacon.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="frame">
<div id="banner">
<a href="mymdb.php"><img src="https://webster.cs.washington.edu/images/kevinbacon/mymdb.png" alt="banner logo" /></a>
My Movie Database
</div>
<div id="main">
<h1>The One Degree of Kevin Bacon</h1>
<p>Type in an actor's name to see if he/she was ever in a movie with Kevin Bacon!</p>
<p><img src="https://webster.cs.washington.edu/images/kevinbacon/kevin_bacon.jpg" alt="Kevin Bacon" /></p>
<!-- form to search for every movie by a given actor -->
<form action="search-all.php" method="get">
<fieldset>
<legend>All movies</legend>
<div>
<input name="firstname" type="text" size="12" placeholder="first name" autofocus="autofocus" />
<input name="lastname" type="text" size="12" placeholder="last name" />
<input type="submit" value="go" />
</div>
</fieldset>
</form>
<!-- form to search for movies where a given actor was with Kevin Bacon -->
<form action="search-kevin.php" method="get">
<fieldset>
<legend>Movies with Kevin Bacon</legend>
<div>
<input name="firstname" type="text" size="12" placeholder="first name" />
<input name="lastname" type="text" size="12" placeholder="last name" />
<input type="submit" value="go" />
</div>
</fieldset>
</form>
</div> <!-- end of #main div -->
<div id="w3c">
<a href="https://webster.cs.washington.edu/validate-html.php"><img src="https://webster.cs.washington.edu/images/w3c-html.png" alt="Valid HTML5" /></a>
<a href="https://webster.cs.washington.edu/validate-css.php"><img src="https://webster.cs.washington.edu/images/w3c-css.png" alt="Valid CSS" /></a>
</div>
</div> <!-- end of #frame div -->
</body>
</html>