-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreview_etc.html
More file actions
30 lines (30 loc) · 961 Bytes
/
review_etc.html
File metadata and controls
30 lines (30 loc) · 961 Bytes
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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Review - ETC</title>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="night_mode.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="grid">
<header><h1><a href="index.html">LuiGee's Mansion</a></h1></header>
<nav>
<ul>
<li><a href="review_game.html">Review - Game</a></li>
<li><a href="review_etc.html" id="current">Review - ETC</a></li>
<li><a href="not_review.html">Not Review</a></li>
</ul>
</nav>
<div class="sublist">
<ul>
<li id="articlebottom"><a href="r-e1.html">2018 LoL 월드 챔피언십 : 새로운 시대</a></li>
</ul>
</div>
</div>
<button id="night_day" value="night" onclick="
nightModeButton(this)">Night Mode</button>
</body>
</html>