-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu1.html
49 lines (46 loc) · 2.47 KB
/
menu1.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>Photo Album</title>
<meta charset="UTF-8">
<style type="text/css">
table {width: 100%; min-width: 500px; padding: 5px}
img {width: 100%;}
img:hover {border: 10px solid #494949; width: 120%; transition: border 0.5s, width 0.5s;}
form {margin-left: 500px;}
</style>
</head>
<body>
<h1> Photos</h1>
<table>
<tr>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p1.jpg"></td><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p2.jpg">
</td><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p7.jpg"></td><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p4.jpg"></td>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p5.jpg"></td>
</tr>
<tr>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p3.jpg"></td><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p6.jpg"></td>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p8.jpg"></td><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p11.jpg"></td>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p17.jpg"></td>
</tr>
<tr>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p9.jpg"><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p12.jpg"></td>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p13.jpg"></td><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p21.jpg"></td>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p15.jpg"></td>
</tr>
<tr>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p16.jpg"></td><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p10.jpg"></td>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p18.jpg"></td><td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p19.jpg"></td>
<td><img src="http://mm.sookmyung.ac.kr/~it2013716/images/p20.jpg"></td>
</tr>
</table>
<pre>
</pre>
<form name="evaluation" method="get" action="form_app.js">
Is it cool?<br>
1 <input type="range" min="1" max="5" value="3"/> 5
</form>
<pre>
</pre>
</body>
</html>