-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscrip2.html
More file actions
58 lines (53 loc) · 1.91 KB
/
scrip2.html
File metadata and controls
58 lines (53 loc) · 1.91 KB
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
<!DOCTYPE html>
<html>
<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="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
<title>scrip2</title>
</head>
<body>
<div class="scr">
<div onclick="application.goToTargetView(event)" class="home-button">
<img src="home_bl.png" alt="home">
</div>
<div class="toptitle">
<span>SCRIPTURE</span>
</div>
<div>
<img class="single-img" src="bibleflip.png" alt="bibleflip">
</div>
<div>
<img class="bible" src="bible.gif">
</div>
</div>
<div class="button-row">
<div>
<button class="missions" onclick="application.goToTargetView(event)" data-url="http://localhost/missions.html">MISSIONS</button>
</div>
<div>
<button class="impactb" onclick="application.goToTargetView(event)" data-url="http://localhost/impact.html">IMPACT</button>
</div>
<div>
<button class="updates" onclick="application.goToTargetView(event)" data-url="http://localhost/updates.html">UPDATES</button>
</div>
<div>
<button class="pray" onclick="application.goToTargetView(event)" data-url="http://localhost/pray1.html">PRAY</button>
</div>
<div>
<button class="support" onclick="application.goToTargetView(event)" data-url="http://localhost/support.html">SUPPORT</button>
</div>
<div>
<button class="scripture" onclick="application.goToTargetView(event)" data-url="http://localhost/scrip2.html">SCRIPTURE</button>
</div>
</div>
</div>
<script src="./active.js"></script>
<script src="./home.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</body>
</html>