-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty.html
executable file
·105 lines (97 loc) · 4.27 KB
/
empty.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="zh-Hant">
<!--ZH BLANK PAGE TEMPLATE-->
<head>
<title>成大方程式賽車隊</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="NCKU, FSAE, Forumla, Racing, Formula Racing, 成大方程式賽車隊, 成大, 成功大學, 成功大學方程式賽車隊, 方程式賽車隊" />
<meta name="author" content="成大方程式賽車隊" />
<meta name="description" content="成大方程式賽車隊" />
<link rel="icon" href="./img/icon.png" type="image/x-icon" />
<script src="https://kit.fontawesome.com/ce85bf40c6.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="./styles.css" type="text/css" />
<script src="./script.js" defer></script>
</head>
<header>
<div class="menu">
<a href="index.html"><img class="logo " src="./logo/logo_w.png"></a>
<div class="menu-r">
<!--Order is reversed-->
<a href="contact.html" style="font-weight: bold;" class="d">聯絡我們</a>
<a href="sponsors.html" style="font-weight: bold;" class="d">贊助</a>
<a href="vehicles.html" style="font-weight: bold;" class="d">車輛</a>
<a href="about.html" style="font-weight: bold;" class="d">團隊</a>
<a href="index.htmll" style="font-weight: bold;" class="d">首頁</a>
<a href="javascript:void(0)" onclick="openNav()" class="open-m">
<i class="fa-solid fa-bars"></i>
</a>
</div>
</div>
<!--Set to current page but different lang-->
<div class="lang">
<a onclick="lang_change()"><img id="lang_icn" src="./img/lang_blank.png" width="17px"></a>
</div>
</header>
<body onload="check_lang()">
<div class="o-page-loader">
<div class="o-page-loader--content">
<div class="o-page-loader--spinner"></div>
<div class="o-page-loader--message">
<span>Loading...</span>
</div>
</div>
</div>
<div class="menu-m" id="m">
<a href="javascript:void(0)" onclick="closeNav()" class="close-m">
<i class="fa-solid fa-xmark"></i>
</a>
<a href="index.htmll" style="font-weight: bold;">首頁</a>
<a href="about.html" style="font-weight: bold;">團隊</a>
<a href="vehicles.html" style="font-weight: bold;">車輛</a>
<a href="sponsors.html" style="font-weight: bold;">贊助</a>
<a href="contact.html" style="font-weight: bold;">聯絡我們</a>
</div>
<button onclick="topFunction()" id="topBtn" title="Go to top">Top</button>
<div class="t_box">
<h1>成大方程式賽車隊</h1>
<p>asdasdasd</p>
<p>Person Name is:</p>
<p id="demo"></p>
<button onclick="alter_loc()">AAA</button>
<script>
//localStorage.setItem("lastname", "Smith");
let personName = localStorage.getItem("lastname");
document.getElementById("demo").innerHTML = personName;
var i = 0;
function alter_loc() {
if (i == 0) {
i++;
localStorage.setItem("lastname", i);
} else {
i = 0;
localStorage.setItem("lastname", i);
}
document.getElementById("demo").innerHTML = i;
}
</script>
</div>
</body>
<footer>
<h4 class="cont">#RaceBeyond</h4>
<a href="https://www.facebook.com/nckuformularacing/" target="_blank"><i
class='fab fa-facebook'></i></a>
<a href="https://www.instagram.com/nckuformularacing/" target="_blank"><i
class='fab fa-instagram'></i></a>
<a href="https://www.youtube.com/channel/UCZrO0mKGFS3_fs4XA1OUlFA" target="_blank"><i
class='fab fa-youtube'></i></a>
<p style="font-size: 12px;">Copyright ©
<script>
document.write(new Date().getFullYear())
</script> NCKU Formula Racing. All Rights Reserved.</p>
</footer>
<script>
</script>
</html>