-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVehicle.html
More file actions
39 lines (34 loc) · 958 Bytes
/
Vehicle.html
File metadata and controls
39 lines (34 loc) · 958 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Vehicle detail</title>
</head>
<body>
<table border="1">
<thead>
<tr>
<thead>models</thead>
</tr>
</thead>
<tbody>
<tr>
<td id='ford'>Ford
<img src="https://www.fordeumedia-c.ford.com/nas/gforcenaslive/gbr/ce105/yyq/images/gbrce105yyqbs-davs-d9acmjn(a)(a)pn4a7showroom_0_0.png">
</td>
</tr>
<tr>
<td id="merc">Mercedes
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcToBbWnXduTd3oxe2Gg_JFPyG9dfhDkfG9Z9epvetI39VWhixkW&s">
</td>
</tr>
<tr>
<td id="audi">audi
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTi52YQ9Mh08jhynskxjy5Bog6_espz0BxmiwbKtajqn2ye02nH&s">
</td>
</tr>
</tbody>
</table>
<textarea id="result" rows="10" cols="50"></textarea>
<script type="text/javascript" src="Vehicle.js"></script>
</body>
</html>