-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (62 loc) · 2.54 KB
/
index.html
File metadata and controls
72 lines (62 loc) · 2.54 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>MintCoding</title>
<link rel="icon" type="image/svg+xml" href="img/logo.svg">
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="css/style.css">
<script src="js/lang.js"></script>
</head>
<body>
<div class="container">
<div class="header">
<a href="https://minirang.github.io">
<img src="img/logo.svg" alt="MintCoding Logo" class="logo">
</a>
<h1 data-key="title">MintCoding</h1>
</div>
<div class="content">
<button class="language-toggle"id="language-toggle"onclick="langToggle()">
EN / KO
</button>
<p data-key="description">
Welcome to MintCoding! Your go-to platform for learning block coding
in a fun and interactive way.
</p>
<a id="start-btn" class="btn" data-key="start">
Get Started
</a>
</div>
</div>
<div class="img-scroll">
<img src="img/MintCoding_img.png" alt="mintcoding" class="main-img" onclick="window.location.href='https://minirang.github.io/MintCoding/img/MintCoding_img.png'"/>
</div>
<div class="footer">
<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>
</footer>
</div>
</body>
</html>