-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (62 loc) · 2.14 KB
/
index.html
File metadata and controls
70 lines (62 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>웹프로그래밍 데모</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="logo">WebDemo</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>
<li><a href="list.html">list</a></li>
</ul>
</div>
</nav>
<section class="main">
<div class="container">
<h1>웹프로그래밍 Web</h1>
<h3>웹 개발자를 위한 온라인 메뉴얼
<a href="https://www.w3schools.com">W3Schools: 웹 프로그래밍</a></br></h3>
<p>
웹 프로그래밍의 3가지 요소:
<a href="https://www.w3schools.com/html/">HTML5</a>
<a href="https://www.w3schools.com/css/">CSS</a>
<a href="https://www.w3schools.com/js/">Javascript</a>
</p>
<p>
<a href="table.html">시간표</a>
<a href="media.html">오디오/비디오</a>
<a href="form.html">로그인(input만 되는..)</a>
</p>
<h3>현재시간 : <span id="time"></span></h3>
<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>
</div>
</section>
<script src="main.js"></script>
</body>
</html>