-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (34 loc) · 1.03 KB
/
index.html
File metadata and controls
35 lines (34 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link
href="fonts/JalnanOTF.otf"
rel="stylesheet"
type="text/css"
/>
<link href="styles/style.css" rel="stylesheet" type="text/css" />
<title>My test page</title>
</head>
<body>
<h1>상대성 이론</h1>
<img src="images/상대성 이론.png" alt="상대성 이론.png" width="500" />
<p>상대성 이론은 아인슈타인이 만든 이론으로</p>
<ul>
<li>특수 상대성 이론</li>
<li>일반 상대성 이론</li>
</ul>
<p>이 있다.</p>
<ol>
<li>시간은 상대적이다.</li>
<li>공간도 상대적이다.</li>
</ol>
<a
href="https://namu.wiki/w/%EC%83%81%EB%8C%80%EC%84%B1%20%EC%9D%B4%EB%A1%A0"
>
상대성 이론 : 나무위키
</a>
<button>Change user</button>
<script src="scripts/main.js"></script>
</body>
</html>