-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<title>팡쓰 웹사이트</title>
<script type="text/javascript" src="./add_two_number.js"></script>
<script type="text/javascript" src="./what_time.js"></script>
<link
href="./bootstrap4/css/bootstrap.min.css"
rel="stylesheet"
type="text/css"
/>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="blog.html">Blog</a>
<a href="about_me.html">About me</a>
</nav>
<h1>첫번째</h1>
<h2>두번째</h2>
<h3>세번째</h3>
<h4>네번째</h4>
<h5>다섯번째</h5>
<button onclick="whatTimeIsIt()">현재시각</button>
<hr />
<label for="inputA">a</label>
<input id="inputA" value="1" onkeyup="doSomething()" />
<label for="inputB">b</label>
<input id="inputB" value="2" onkeyup="doSomething()" />
<p>
<span id="valueA">1</span> + <span id="valueB">2</span> =
<span id="valueC">3</span> 이죠.
</p>
<hr />
<a href="https://google.com">google</a>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-fQybjgWLrvvRgtW6bFlB7jaZrFsaBXjsOMm/tB9LTS58ONXgqbR9W8oWht/amnpF"
crossorigin="anonymous"
></script>
</body>
</html>