-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.html
54 lines (52 loc) · 1.62 KB
/
1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="woojin.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>송우진</title>
<script>
var userName = prompt("당신의 이름은?", "안알려줌");
document.write("<h1> 환영합니다!!" + userName + "님! 필리핀에서 잘 돌아왔구나!! </h1>")
</script>
<ul>
<li><a class="active" href="index.html">Menu</a></li>
<li><a href="1.html">환영의 말</a></li>
<li><a href="2.html">sing in</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="4.html">시계</a> </li>
</ul>
<body>
<style type="text/css">ul {
list-style-type: none;
margin: 0;
padding: 0;
background-color: #333;
}
ul:after{
content:'';
display: block;
clear:both;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #4CAF50;
}
</style>
<img src="flower.jpg" width="500" height="500">
</div>
</body>
</html>