-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
109 lines (98 loc) · 3.54 KB
/
contacts.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>kumck contacts</title>
<link rel="stylesheet" href="style.css">
<style>
img {
float: right; /* or "right" for right alignment */
margin: 1px; /* Optional: Add some space around the image */
}
</style>
</head>
<body>
<div class="header-container">
<header class="header-container">
<div class="church-logo">
<a href="index.html">
<img class="header-image" src="images/church-logo-1.jpg">
</a>
</div>
<h1 class="header-title">KUMCK ENGLISH SERVICE</h1>
<!-- this or KUMCK English Service -->
<style>
h1 {
float: left;
margin: 10px;
}
</style>
</header>
</div>
<section class="navbar-container">
<nav class="navbar">
<ul class="navbar-list">
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="announcements.html" class="nav-link">Announcements</a></li>
<li><a href="service.html" class="nav-link">Service</a></li>
<li><a href="praise-set.html" class="nav-link">Praise Set</a></li>
<li><a href="scripture.html" class="nav-link">Scripture</a></li>
<li><a href="contacts.html" class="nav-link">Contacts</a></li>
<!-- <li><a href="index.html">Prayer Requests</a></li> -->
</ul>
</nav>
</section>
<main>
<section>
<h2><a href="https://www.youtube.com/@KUMCKES">Link to LiveStream</a></h2>
<hr>
<h2>Newcomers!</h2>
<a href="https://forms.gle/2f6GnVnL24XR2CMA7">Welcome Form</a>
<p><small>Please fill out this form</small></p>
</section>
<hr>
<h2>Contacts</h2>
<ul>
<li class="element-with-padding"> ES Pastor: Keon "Guhn" Huh</li>
<ul>
<small>Email: [email protected]</small>
<!-- <br> -->
<!-- <small>Mobile #: (703)342-6778</small> -->
</ul>
<li class="element-with-padding">Praise Leader: Jane Yoo</li>
<ul>
<small>Email: [email protected]</small>
<!-- <br> -->
<!-- <small>Mobile #: (571)606-4200</small> -->
</ul>
<li class="element-with-padding">Praise Team</li>
<ul>
<small>Caitlyn Yoon</small><br>
<small>Caleb Cho</small><br>
<small>Allie Jeong (on break)</small><br>
<!-- <small>Mrs.Chon</small><br> -->
<small>Michael Yang</small><br>
</ul>
<li class="element-with-padding">Media Team</li>
<ul>
<small>Ethan Lee</small><br>
<small>Ricky Lee</small><br>
<small>Caleb Lee</small><br>
<!-- <small>Esther Chon</small><br> -->
</ul>
</ul>
<hr>
<h3>Comments & Questions?</h3>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSd0Sep5UBWCgsD_p2GNFsIHFGJUQPpele0q4a1dcssuxEILgA/viewform">Let us know!</a>
<hr>
<h3>ES New Name Contest</h3>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSe4d0AAD-PqoTSRBHTTA40RRPCNpBE_S7X2zbw3802VxpG3UQ/viewform">ES New Name Contest</a>
<hr>
</main>
<footer>
<p>© created by michael yang + caitlyn yoon. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>