-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (77 loc) · 3.25 KB
/
index.html
File metadata and controls
85 lines (77 loc) · 3.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Entry Code Optimizer</title>
<link rel="icon" type="image/svg+xml" href="img/logo.svg">
<link rel="manifest" href="manifest.json">
<!--google fonts-->
<!--Montserrat-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap">
<!--Roboto-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap">
<link rel="stylesheet" href="style.css">
<script type="module" src="script.js"></script>
</head>
<body>
<div class="top-container" style="cursor: default;">
<h1>
Entry code
<br>
optimizer
</h1>
<p>엔트리에서 작품을 최적화시켜줍니다.</p>
</div>
<div class="main-container">
<p>변환</p>
<button class="input">
.ent 파일 업로드
<input type="file" id="file_upload" accept=".ent">
</button>
</div>
<footer>
<div class="minirang">
<a href="https://minirang.github.io" target="_blank" rel="noopener noreferrer">
<img src="img/logo.svg" alt="서울민트초코" class="img">
<span>minirang</span>
</a>
<ul>
<li>
<a href="https://github.com/minirang" target="_blank" rel="noopener noreferrer">
<img src="img/github.svg" alt="깃허브" class="img" id="github">
GitHub
</a>
</li>
<li>
<a href="https://playentry.org/profile/62d00ecb8b49cc01e2b68603" target="_blank" rel="noopener noreferrer">
<img src="img/entry.svg" alt="엔트리" class="img">
Entry
</a>
</li>
</ul>
</div>
<div class="aqu3180">
<a href="https://aqu3180.co.kr" target="_blank" rel="noopener noreferrer">
<img src="img/aqu3180.svg" alt="aqu3180" class="img">
<span>aqu3180</span>
</a>
<ul>
<li>
<a href="https://github.com/idiotf" target="_blank" rel="noopener noreferrer">
<img src="img/github.svg" alt="깃허브" class="img" id="github">
GitHub
</a>
</li>
<li>
<a href="https://playentry.org/profile/65d07bfd11787000264734c1" target="_blank" rel="noopener noreferrer">
<img src="img/entry.svg" alt="엔트리" class="img">
Entry
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>