-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (67 loc) · 2.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- 메뉴 섹션 -->
<nav class="navbar">
<div class="container">
<div class="logo">HJCdemo</div>
<ul class="nav">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<!-- 메인 섹션 -->
<section class="main">
<div class="container">
<h1>웹 프로그래밍. Web Programming...</h1>
<h3>
웹 개발자를 위한 온라인 메뉴얼 :
<a href="https://www.w3schools.com/">w3schools</a>
</h3>
<p>
웹프로그래밍의 3가지 요소:
<a href="https://www.w3schools.com/html/default.asp">HTML5</a> |
<a href="https://www.w3schools.com/css/default.asp">CSS3</a> |
<a href="https://www.w3schools.com/js/default.asp">Javascript</a>
</p>
<hr />
<p>
배경색 바꾸기:
<button onclick="pink()">Pink</button>
<button onclick="lightblue()">LightBlue</button>
<button onclick="yellow()">Yellow</button>
<button onclick="reset()">Reset</button>
</p>
<p>
배워봅시다:
<button onmouseover="showhtml()" onmouseout="hide()">HTML5</button>
<button onmouseover="showcss()" onmouseout="hide()">CSS3</button>
<button onmouseover="showjs()" onmouseout="hide()">Javascript</button>
</p>
<hr />
<br />
<div>
<img id="fig" height="200px" />
<p id="desc"></p>
</div>
<p>현재 시간: <span id="time"></span></p>
</div>
</section>
<script src="main.js"></script>
</body>
</html>