-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (83 loc) · 3.57 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
<!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">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<title>Emmanuel Weds Esther</title>
</head>
<body>
<div class="main">
<div class="banner">
<div class="nav">
<marquee><b>Emmanuel and Esther</b></marquee>
<div class="menu">
<a href="#">Home</a>
<a href="#us">Us</a>
<a href="#venue">Venue</a>
<a href="#recept">Prayer</a>
</div>
</div>
<div class="text">
<h1>Emma and Esther</h1>
<span class="date">On 23rd April, 2022</span>
</div>
</div>
<div class="section">
<div class="us">
<h2><a name="us">Us</a></h2>
<div class="us1">
<img src="images/12.jpg" alt="">
<span>Esther is Mine!</span>
</div>
<div class="us1">
<img src="images/13.jpg" alt="">
<span>Emmanuel is Mine!</span>
</div>
</div>
<div class="venue">
<h2><a name="venue">Venue</a></h2>
<img src="images/Reception-1.jpg" alt="egypt">
<p>The wedding Solemnization of our dear brother and
sister Emmanuel and Esther is slated to hold on the
<span>23rd of April, 2022</span> at <span>E.Y.N Church LCC
masaka one (1), 10am Prompt.
</span>
</p>
</div>
<div class="recept">
<h2><a name="recept">Prayer</a></h2>
<img src="images/17-removebg-preview.png" alt="">
<p>"Just as the church is joint together with Christ as His bride-groom,
so shall this marriage be. The Lord shall cause his face to shine on this home.
This family and the family of everyone that reads this write-up shall be the mirror image of the family of Christ in heaven.
</br> Dear reader check your family in heaven and actualize it here on earth. Shallom!"</p>
</div>
<div id="slider">
<div class="foot-head">Friends</div>
</div>
<input type="text" id="input" placeholder="please input your name,Submit and ...">
<button id="click">Submit</button>
<div>
<h3 id="output"></h3>
</div>
<footer>© copyright 2021, you can follow me @ josephbitrus62@gmail.com / 08163731846
</footer>
</div>
</div>
<script>
// let a= prompt("Type in your name here:")
// document.getElementById("input").innerHTML+=`${a} we all hope to see you`
const input = document.getElementById('input');
document.getElementById('click').addEventListener('click',()=>{
console.log(input.value)
document.getElementById('output').innerHTML = `Dear ${input.value} we hope to see you`;
input.style.display = 'none';
document.getElementById('click').style.display = 'none';
})
</script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>