-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst.html
85 lines (68 loc) · 1.6 KB
/
first.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html>
<head>
<title>FrameWork</title>
<link href="css/first.css" rel="stylesheet" type="text/css" media="all" />
</head>
<body>
<div id = "container">
<div id = "header">
<ul id="tmheaderlinks">
<li><a href="" class="active">home</a></li>
<li><a href="">specials</a></li>
<li><a href="">Delivery</a></li>
<li><a href="">contact</a></li>
</ul><!-- Block user information module HEADER -->
<div id="languages_block_top">
<ul id="first-languages">
<li class="selected_language">en</li>
<li >
<a href="" title="Français (French)">
fr</a>
</li>
<li >
<a href="" title="Español (Spanish)">
es</a>
</li>
</ul>
</div>
<div id="currencies_block_top">
<form id="setCurrency" action="/prestashop_40971/" method="post">
<label>Currency:</label>
<select onchange="setCurrency(this.value);">
<option value="2" selected="selected">Dollar</option>
<option value="1">Euro</option>
<option value="3">Pound</option>
</select>
<input type="hidden" name="id_currency" id="id_currency" value=""/>
<input type="hidden" name="SubmitCurrency" value="" />
</form>
</div>
</div>
<div id = "menu">
<ul>
<li>MENU</li>
<li>HTML</li>
<li>CSS</li>
</ul>
</div>
<div id = "content1">
<u>contens goes here</u>
</div>
<div id = "content2">
<b>contents2</b>
</div>
<div id = "content3">
<i>contents3<i>
</div>
<div id = "content4">
<em>contents4</em>
</div>
<div id = "content5">
<p>contents5</p>
</div>
<div id = "footer">
<p>copyrigth @vensoft<p>
<input type="text" x-webkit-speech />
</div>
</body>
</html>