This repository has been archived by the owner on Oct 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (64 loc) · 2.11 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 lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="CSS/bootstrap.min.css" rel="stylesheet">
<link href="CSS/bootstrap-theme.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" type="text/css" href="CSS/Header+Footer.css"/>
<style>
/* ENTER CSS CODE APPLICABLE FOR THIS PAGE ONLY HERE*/
#skyline {
display: block;
margin: auto;
}
.container {
text-align: center;
}
#EnglishSelect {
margin-right: 50px;
}
#ChineseSelect {
margin-left: 50px;
}
</style>
<title>Select a Language / 选择语言</title>
<!--
<script type="text/javascript" src="*.js">
</script>
-->
<script type="text/javascript">
</script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#"><img id="logo" class="img-fluid" src="Media/SNS_Logo.png" width="177" height="44" alt="Smart Nation Logo"></a>
</div>
</div>
</nav>
<!-- ENTER HTML CODE APPLICABLE FOR THIS PAGE ONLY BELOW-->
<br>
<div class="container">
<img id="skyline" class="img-responsive" src="Media/smart-nation-skyline.jpg" alt="Smart Nation Skyline"></img>
<h1>Welcome to our Website! / 欢迎来到我们的网站!</h1>
<h3>Please choose your preferred language! / 请选择你的宁可的语言!</h3>
<br>
<a id="EnglishSelect" class="btn btn-info" href="HTML_English/Home Page.html">English</a>
<a id="ChineseSelect" class="btn btn-info" href="HTML_Chinese/Home Page.html">Chinese</a>
<br>
</div>
<!-- ENTER HTML CODE APPLICABLE FOR THIS PAGE ONLY ABOVE-->
<footer class="footer">
<div class="container">
<p class="text-muted">Copyright © 2017, ITP-191 Project Group SF1701-2</p>
<p class="text-muted">版权 © 2017, ITP-191 计划组 SF1701-2</p>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="JavaScript/bootstrap.min.js"></script>
</body>
</html>