-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 2.53 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
<script src="jquery-min.js" type="application/javascript"></script>
<script src="script.js" type="application/javascript"></script>
<title>EZPZ</title>
</head>
<body>
<div id="outer">
<div id="startPage">
<button id="browse">Browse</button>
<div id="frequentSitesArea">
<h1>Welcome to EZPZ, your trouble-free way to surf the internet</h1>
<div class="roundedBox">
<h2>You can use the box below to search the internet for topices that interest you:</h2>
<form>
<input type="text" size="60"/>
</form>
E.g. gardening, recipes, news, holidays
</div>
<div class="roundedBox">
<img class="icon" src="imgs/visited-most.jpg"/>
<h2>Go back to the pages that you've visited the most: </h2>
<div class="thumb_view">
<img id="thumb_1" src="imgs/thumbnail_placeholder.jpg" />
<img id="thumb_2" src="imgs/thumbnail_placeholder.jpg" />
<img id="thumb_3" src="imgs/thumbnail_placeholder.jpg" />
<img id="thumb_4" src="imgs/thumbnail_placeholder.jpg" />
<img id="thumb_5" src="imgs/thumbnail_placeholder.jpg" />
</div>
</div>
</div>
<div id="faveSitesArea" class="roundedBox">
<img class="icon" src="imgs/favourite.jpg"/>
<h2>Or choose from your list of saved favourites: </h2> <div id="faveSitesArea">
<h2> My Sites: </h2>
<div class="thumb_view">
<img src="imgs/thumbnail_placeholder.jpg" />
<img src="imgs/thumbnail_placeholder.jpg" />
<img src="imgs/thumbnail_placeholder.jpg" />
<img src="imgs/thumbnail_placeholder.jpg" />
<img src="imgs/thumbnail_placeholder.jpg" />
</div>
</div>
</div></div>
<div id="browser">
<div id="browserHeader">
<form id="location">
<input id="locationBar" type="text" /><input id="go" type="submit" value="Go!" /><button id="home">Home</button>
</form>
<button id="back_button" onClick="historyBack()">Back</button>
<button id="forward_button" onClick="historyForward()">Forward</button>
</div>
<div id="browserContentArea">
<!-- Web content goes inside this iframe -->
<iframe id="contentFrame" privilege="content" src="http://www.google.co.uk/"></iframe>
</div>
<div id="browserFooter">
<!-- Browser footer -->
</div>
</div>
</div>
</body>