-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (91 loc) · 3.78 KB
/
Copy pathindex.html
File metadata and controls
102 lines (91 loc) · 3.78 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recursion World</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/themes/prism-tomorrow.min.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<h1>돌고 도는 세상</h1>
<div class="content-box">
<h2>손</h2>
<img src="https://upload.wikimedia.org/wikipedia/en/b/ba/DrawingHands.jpg" style="width:50%" alt="Drawing Hands by M.C. Escher">
</div>
<div class="content-box">
<h2>눈</h2>
<iframe src="https://giphy.com/embed/qoJ9sZu2Xui9a" width="480" height="480" style="width:50%" frameBorder="0" class="giphy-embed" allowFullScreen></iframe>
</div>
<div class="content-box">
<h2>말</h2>
<blockquote>
"이 말은 거짓말이다."
<cite>–돌도사</cite>
</blockquote>
</div>
<div class="content-box">
<h2>게</h2>
<iframe width="80%" height="315" src="https://www.youtube.com/embed/36ykl2tJwZM?si=HNqEz2eP8S6SHRPF" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<div class="content-box">
<h2>뱀</h2>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Ouroboros.png/250px-Ouroboros.png" style="width:50%" alt="Ouroboros">
</div>
<div class="content-box">
<h2>시</h2>
<div class="poem">
<h3>건축무한육면각체</h3>
<div class="poet">
<p>이상</p>
</div>
<p>사각형의내부의사각형의내부의사각형의내부의사각형의내부의사각형</p>
<p>사각이난원운동의사각이난원운동의사각이난원</p>
<p>비누가통과하는혈관의비눗내를투시하는사람</p>
<p>지구를모형으로만들어진지구의를모형으로만들어진지구</p>
<p>...(후략)</p>
</div>
</blockquote>
</div>
<div class="content-box">
<h2>줌</h2>
<img src="zoom.png" style="width:100%; border:2px maroon"></iframe>
</div>
<div class="content-box">
<h2>코드</h2>
<pre><code class="language-ocaml">
(fun x -> Printf.printf "%s %S" x x) "(fun x -> Printf.printf \"%s %S\" x x)"
</code></pre>
<!-- Prism.js JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/prism.min.js"></script>
<!-- Prism.js for OCaml -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/prism-ocaml.min.js"></script>
</div>
<div class="content-box">
<h2>여기</h2>
<a href="./index.html">
<iframe id="embed" src="./index.html" title="돌고도는 세상" style="width:80%; height:500px; border:2px maroon"></iframe>
<script>
<!-- make it stop after 2 times -->
const iframeEl = document.getElementById("embed");
const nextQueryValue = !location.search ? 1 : Number(location.search.split("?").pop()) + 1;
if (nextQueryValue > 2) {
iframeEl.src = "toomuch.html";
} else {
iframeEl.src = `./index.html?${nextQueryValue}`;
}
</script>
</a>
</div>
<div class="content-box">
<h2>다음</h2>
<p>다음 단계로 진행하려면 아래 버튼을 클릭하세요.</p>
<a href="recursion.html" class="next-button">다음 페이지로 이동</a>
</div>
<footer class="footer">
<p><a href="https://prosys.kaist.ac.kr">KAIST 프로그래밍시스템 연구실</a> 제작</p>
</footer>
</div>
</body>
</html>