-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedit.html
More file actions
53 lines (53 loc) · 1.79 KB
/
edit.html
File metadata and controls
53 lines (53 loc) · 1.79 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta
name="description"
content="대구소프트웨어마이스터고등학교 코드 공유 플랫폼 Sh4re!"
/>
<meta
name="keywords"
content="대구소프트웨어마이스터고등학교, 대소고, Sh4re!, sh4re, 대소마고, 코드 공유 플랫폼"
/>
<meta name="author" content="채근영" />
<meta property="og:title" content="sh4re!" />
<meta
property="og:description"
content="대구소프트웨어마이스터고등학교 코드 공유 플랫폼 Sh4re!"
/>
<meta
property="og:image"
content="https://sh4re.chaeyn.com/sh4reIcon.png"
/>
<meta property="og:url" content="https://sh4re.chaeyn.com/write" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta
name="google-site-verification"
content="07rxD3sUBYQzE0a1nNHJWxoZHNE_0tnYDMGzMotpKyU"
/>
<link rel="apple-touch-icon" href="/sh4reIcon.png" />
<title>Sh4re!</title>
</head>
<body>
<main>
<div class="content-box">
<input class="title-box" placeholder="제목을 입력하세요." />
<div class="code-box">
<textarea class="code-input"></textarea>
<pre>
<code class="code language-python">코드를 입력하세요.</code>
</pre>
</div>
</div>
<div class="upload-box">
<ul class="assignment-list"></ul>
<button class="share">코드 수정</button>
</div>
</main>
<script type="module" src="/js/main.js"></script>
<script type="module" src="/js/edit.js"></script>
<script type="module" src="/components/header/header.js"></script>
</body>
</html>