forked from rich5k/2ndproject-Sowseeds-Webiste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
our_team.html
123 lines (109 loc) · 3.21 KB
/
our_team.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<title>Welcome to Sowseeds International Ministries</title>
<style type="text/css">
body{
background-image: url(guitar.jpg);
background-size: cover;
background-attachment: fixed;
}
#heading{
text-align: center;
}
#make-up{
color: white;
font-size: 25px;
}
img{
float: center;
}
.tabHolder{
width: 80%;
padding: 40px;
margin: 0px 100px;
font-family: verdana;
height: 200px;
}
.tabHolder .buttonHolder{
height: 38%;
}
.tabHolder .buttonHolder button{
width: 14.8%;
height: 100%;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 10px;
font-family: tahoma;
font-size: 15px;
background-color: white;
}
.tabHolder .buttonHolder button:hover{
background-color: green;
}.tabHolder .tabPanel{
width: 30%;
height: 70%;
background-color: yellow;
color: black;
text-align: center;
padding-bottom: 10px;
box-sizing: border-box;
font-family: tahoma;
font-size: 18px;
display: none;
}
.tabHolder .tabPanel1{
background-color: yellow;
color: black;
text-align: center;
padding-bottom: 10px;
box-sizing: border-box;
font-family: tahoma;
font-size: 18px;
display: none;
}
.content{
width: 70%;
padding: 40px;
margin: 100px auto;
font-family: times new roman;
color: white;
font-size: 25px;
}
p{
font-size: 25px;
color: black;
}
</style>
</head>
<body style="background-color: green">
<div class='content'>
<img width="300" height="200" src="SIM logo.png" >
<link rel="stylesheet" type="text/css" href="homepage.css">
<div class="tabHolder">
<div class="buttonHolder">
<button onclick="showPanel(0,'lightblue')"><a href="homepage.html"><big>About Us</big></a></button>
<button onclick="showPanel(1,'red')"><a href="events.html"><big>Events</big></a></button>
<button onclick="showPanel(2,'yellow')"><a href="mission_vision.html"><big>Mission & Vision</big></a></button>
<button onclick="showPanel(3,'lightgreen')"><a href="audio_teachings.html"><big>Audio Teachings</big></a></button>
<button onclick="showPanel(4,'gray')"><a href="directions.html" ><big>Directions</big></a></button>
<button onclick="showPanel(5,'orange')"><a href="donations.html"><big>Donations</big></a></button>
</div>
<div class="tabPanel"><a href="our_purpose.html" >Our Purpose</a><br> <a href="our_pastor.html" >Our Pastor</a><br> <a href="our_team.html" >Our Team</a><br> <a href="our_values.html" >Our Values</a><br> <a href="statement_of_faith.html" >Statement of Faith</a><br> <a href="contact_us.html" >Contact Us</a></div>
<div class="tabPanel"><a href="camp.html" >Children's Camp</a><br><br> <a href="awana.html" >AWANA</a><br><br> <a href="worship_night.html" >Worship Night</a></div>
<div class="tabPanel1"></div>
<div class="tabPanel1"></div>
<div class="tabPanel1"></div>
<div class="tabPanel1"></div>
</div>
<h1 id= "heading">Sowseeds International Ministries</h1>
<hr/><hr/>
<p id = "make-up">
<h1>Our Team</h1>
</p>
</div>
<script src="myScript.js"></script>
</body>
</html>