-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
103 lines (102 loc) · 3.25 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>tolelom</title>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<link rel="stylesheet" type="text/css" href="./index.css" />
</head>
<body>
<div class="nav">
<div>
<img
src="./img/king.jpg"
class="logo"
onclick="location.href='/'"
style="cursor: pointer"
/>
</div>
<div class="tolelom" onclick="location.href='/'" style="cursor: pointer">
tolelom
</div>
<div class="nav-items-left">
<div
class="nav-item"
onclick="location.href='/editor'"
style="cursor: pointer"
>
에디터
</div>
<div
class="nav-item"
onclick="location.href='/grammer'"
style="cursor: pointer"
>
문법
</div>
<div
class="nav-item"
onclick="location.href='/guest'"
style="cursor: pointer"
>
방명록
</div>
<div class="nav-item">
<img src="./img/search.jpg" class="search" />
</div>
</div>
<div class="nav-items-right">
<div
class="nav-item"
onclick="location.href='/login'"
style="cursor: pointer"
>
로그인
</div>
</div>
</div>
<div>
<img src="./img/hanguel.jpg" class="hanguel" />
</div>
<div class="main">
<div style="height: 60px"></div>
<div>
<h2>한글 프로그래밍 언어로 쉽게 입문할 수 있어요</h2>
<p>
프로그래밍 언어 뿐 아니라 관련 용어나 자료들은 대부분 영어 중심이기
때문에 <br />한국인 프로그래밍 입문자들에게 영어는 큰 진입 장벽이 되고
있어요. <br /><span>문법 구조가 간결</span>하고
<span>한글 키워드</span>로 이루어진 언어를 통해 코딩을 쉽게
배워보아요!
</p>
</div>
<div style="height: 80px"></div>
<div>
<h2>문법 튜토리얼을 따라가보세요!</h2>
<p>
처음 시작하는 분들을 위한 <span>문법 튜토리얼</span>이
준비되어있어요.<br />
학습 체크를 위한 간단한 문법 문제도 제공할 예정이에요.<br />
</p>
<div style="height: 30px"></div>
<a href="/grammer">문법 공부해보기 →</a>
</div>
<div style="height: 80px"></div>
<div>
<h2>코드를 작성하고 실행해보세요!</h2>
<p>
기존에 개발되어있는 한글 프로그래밍 언어는 컴파일러를 따로
설치해야해서 사용이 불편해요.<br />
tolelom 언어는
<span>별도의 프로그램 설치 없이</span> 쉽게 코드를 실행해볼 수 있도록
<span>웹 컴파일러 서비스</span>를 제공해요.<br />
</p>
<div style="height: 30px"></div>
<a href="/editor">코드 실행해보기 →</a>
</div>
</div>
<div style="height: 200px"></div>
</body>
<script></script>
</html>