-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (92 loc) · 4.77 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home page</title>
<title>How it works</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CMontserrat%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=auto&ver=5.9.3" media="all">
<link rel="stylesheet" href="home.css">
</head>
<body>
<nav>
<div class="nav-div">
<div id="logo">
<img src="img/logo.png" alt="" >
</div>
<div>
<a href="javascript:void(0);" class="icon active ">
<i class="fa fa-bars"></i></a>
</div>
<div class="nav-links " >
<ul>
<li><a href="index.html"> Home</a></li>
<li> <a href="about.html">About</a> </li>
<li><a href="how.html">How it works</a> </li>
<li> <a href="features.html">Features</a> </li>
<li><a href="contact.html">contact us</a> </li>
</ul>
</div>
<div class="nav-button">
<button>
Register your church
</button>
</div>
</div>
</nav>
<script>
var btn = document.querySelector(".icon");
var drop = document.querySelector(".nav-links");
btn.onclick=()=>{
drop.style.display ="block"
}
</script>
<section class="content">
<h2>
Connecting Christians Globally
</h2>
<div class="element">
<img src="https://edenmain.com/wp-content/uploads/2022/04/Group-1.png" alt="">
<img src="https://edenmain.com/wp-content/uploads/2022/04/Group.png" alt="">
</div>
<section class="images">
<div><img src="https://edenmain.com/wp-content/uploads/2022/04/Mask-group.png" class="a" alt="" width="230" height="450"></div>
<div><img src="https://edenmain.com/wp-content/uploads/2022/04/shutterstock_1332465143-1.png" class="b" alt="" width="230" height="450"></div>
<div><img src="https://edenmain.com/wp-content/uploads/2022/04/2.jpeg" alt="" width="200" class="c" height="450"></div>
<div><img src="https://edenmain.com/wp-content/uploads/2022/04/Mask-group-1.png" alt="" class="d" width="220" height="450"></div>
<div><img src="https://edenmain.com/wp-content/uploads/2022/04/Mask-group-2.png" alt="" class="e" width="230" height="450"></div>
</section>
<footer>
<p>
Copyright © and Trademark owned by Tekparadise
</p>
<div id="ast-scroll-top" onclick="topFunction()" class="ast-scroll-top-icon ast-scroll-to-top-right" data-on-devices="both" style="display: block;">
<span class="ast-icon icon-arrow"><svg class="ast-arrow-svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve">
<path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"></path>
</svg></span>
</div>
</footer>
</section>
<script>
//Get the button
var mybutton = document.getElementById("ast-scroll-top");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
</body>
</html>