-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (87 loc) · 4.34 KB
/
index.html
File metadata and controls
144 lines (87 loc) · 4.34 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="./style.css" rel="stylesheet" type="text/css">
<link href="./article.css" rel="stylesheet" type="text/css">
<!--link rel="stylesheet" type="text/css" href="../style.css"-->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="./menu.js"></script>
<script type="text/javascript" src="./parallax.js"></script>
<title>Melara's Site</title>
</head>
<body>
<script language="javascript" type="text/javascript" src="./background.js"></script>
<div class="page">
<header id="head_wrap" class="header">
<div class="figtitle">
<a href="./index.html"><img src="./resources/header.png" class="title"></a>
</div>
<!--button-->
<div id="mobile-head">
<div id="nav-toggle">
<div>
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<div id="under_line"></div>
</header>
<!-- 本文 -->
<article class="article">
<div class="tabs">
<input class="tab" id="selection1" type="radio" name="tab_selection" checked>
<label class="tab_item" id="button1" for="selection1">Home</label>
<input class="tab" id="selection2" type="radio" name="tab_selection">
<label class="tab_item" id="button2" for="selection2">Resource</label>
<input class="tab" id="selection3" type="radio" name="tab_selection">
<label class="tab_item" id="button3" for="selection3">Mod</label>
<input class="tab" id="selection4" type="radio" name="tab_selection">
<label class="tab_item" id="button4" for="selection4">Links</label>
<input class="tab" id="selection5" type="radio" name="tab_selection">
<label class="tab_item" id="button5" for="selection5">Contact</label>
<div class="margin"></div>
<div class="tab_content" id="content1">
<strong>HOME</strong>
<p>Welcome to Melara's website!</p>
</div>
<div class="tab_content" id="content2">
<strong>MINECRAFT</strong>
</div>
<div class="tab_content" id="content3">
<strong>TECH</strong>
</div>
<div class="tab_content" id="content4">
<strong>LINKS</strong>
<div class="links">
<a href="https://www.curseforge.com/minecraft/texture-packs/muddycube-resourcepack"><img src="./resources/icon/curseforge.png">MuddyCube Resourcepack</a>
<hr>
<p>MuddyCube is Minecraft resourcepack for Spigot Pluguin "Slimefun 4"</p>
<p>This resourcepack made your game more beautiful and cooler!!</p>
</div>
</div>
<div class="tab_content" id="content5">
<p><strong>🦅CONTACT🦅</strong></p>
<div class="contact">
<hr>
<a href="https://github.com/Melara1024"><img src="./resources/icon/git.png">Github</a>
<p></p>
<hr>
<a href="https://www.curseforge.com/members/melara1024/projects"><img src="./resources/icon/curseforge.png">Curseforge</a>
<p></p>
<hr>
<a href="https://twitter.com/tech_melara?ref_src=twsrc%5Etfw%7Ctwcamp%5Eembeddedtimeline%7Ctwterm%5Escreen-name%3Atech_melara%7Ctwcon%5Es1_c1"><img src="./resources/icon/twitter.png">Twitter</a>
<p></p>
<hr>
<a class="twitter-timeline" data-lang="en" data-theme="dark" data-width="500px" href="https://twitter.com/tech_melara?ref_src=twsrc%5Etfw">Tweets by tech_melara</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
</article>
<footer class="footer"></footer>
</div>
</body>
</html>