This repository has been archived by the owner on Dec 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ㄱcontact.html
80 lines (68 loc) · 3.42 KB
/
ㄱcontact.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
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link type = "text/css" rel ="stylesheet" href = "contact.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Gowun+Dodum&display=swap" rel="stylesheet">
<meta name = "keyword" content="Community page">
<meta name="description" content="Contact mepage">
<meta name = "author" content = "2113424, 2116740, 2114178">
<title>만든 사람들</title>
</head>
<body>
<nav><!-- 로고 넣기 -->
<div style = "width : 100%; text-align: center;">
<a href = "index.html">
<img src = "alive.jpg" style="width:20%;"></a></div>
<div><ul>
<li><a class="active" href="index.html">주요 소식</a></li>
<li><a href="manual.html">비상시 행동 요령</a></li>
<li><a href="ㄱhelper.html">도우미 연락망</a></li>
<li><a href="ㄱcontact.html">만든 사람들</a></li>
</ul></div></nav>
<div style="margin-left : 109px; margin-top : 27px;">
<span id="clock" style="color:black; font-size: 30px;">clock</span>
<span id="apm" style="color:black; font-size: 20px; left:240px; top:160px;">ampm</span>
</div>
<div style = "width : 1250px;margin-top : -20px;">
<p style="font-size:20px;margin-top:30px; margin-left:500px;"><mark>김예지</mark>
<img src = "email.png" style = "width:35px; height:35px; margin-left:0px; margin-top:15px;">
<a style= "display : block;margin-top:-30px;">[email protected]</a>
<img src = "phone-icon-style.png" style = "width:40px; height:40px; margin-left:-5px">
<a style= "display : block;margin-top:-30px;">010-2647-1482</a></p></div>
<div style = "width : 1250px;">
<p style="font-size:20px; margin-top:30px; margin-left:500px;"><mark>김지윤</mark>
<img src = "email.png" style = "width:35px; height:35px; margin-left:0px; margin-top:15px;">
<a style= "display : block;margin-top:-30px;">[email protected]</a>
<img src = "phone-icon-style.png" style = "width:40px; height:40px; margin-left:-5px">
<a style= "display : block;margin-top:-30px;">010-4184-1450</a></p></div>
<div style = "width : 1250px;">
<p style="font-size:20px; margin-top:30px; margin-left:500px;"><mark>이수현</mark>
<img src = "email.png" style = "width:35px; height:35px; margin-left:0px; margin-top:15px;">
<a style= "display : block;margin-top:-30px;">[email protected]</a>
<img src = "phone-icon-style.png" style = "width:40px; height:40px; margin-left:-5px">
<a style= "display : block;margin-top:-30px;">010-2359-0952</a></p></div>
<script>
var Target = document.getElementById("clock");
var Target_apm = document.getElementById("apm");
function clock() {
var time = new Date();
var hours = time.getHours();
var minutes = time.getMinutes();
var seconds = time.getSeconds();
var AmPm ="AM";
if(hours > 12){
var AmPm ="PM";
hours %= 12;
}
Target.innerText =
`${hours < 10 ? `0${hours}` : hours}:${minutes < 10 ? `0${minutes}` : minutes}:${seconds < 10 ? `0${seconds}` : seconds}`;
Target_apm.innerText = `${AmPm}`;
}
clock();
setInterval(clock, 1000);
</script>
</body>
</html>