-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
56 lines (49 loc) · 1.51 KB
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Top Bar</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav id="navi" width="600px">
<header>
<div class="container">
<nav>
<ul>
<li><h1><a href="index.html">Project Timmies</a></h1></li>
<li><a href="JavaScript:newPopup('home.html');" class="icon tasks">Listing</a></li>
<li><a href="settings.html" class="icon settings">.</a></li>
</ul>
</nav>
</div>
</header>
</nav>
<center> <div id="settingcontainer">
<p><u>Language:</u></p><select>
<option value="english">English</option>
<option value="french">Français</option>
<option value="spanish">Español</option>
<option value="chinese">中文</option>
<option value="hindi">हिन्दी</option>
<option value="arabic">العربية</option>
</select>
<br /><br />
<h3><u>About:</u></h3>
<p>Group: 7</p>
<p>Team Members:</p>
<p>Hao Wu: [email protected]</p>
<p>Henry Ku: [email protected]</p>
<p>Li Yuan: [email protected]</p>
<p>Timothy Chu: [email protected]</p>
</div> </center>
<script type="text/javascript">
// Popup window code
function newPopup(url) {
window.open(
url,'popUpWindow','height=600,width='+(screen.width/2 + 200)+',left='+(screen.width/4)+',top=10,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,directories=no,status=yes')
}
</script>
</body>
</html>