-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (88 loc) · 3.17 KB
/
index.html
File metadata and controls
94 lines (88 loc) · 3.17 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
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
<!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>Profile Page</title>
<link rel="icon" href="profile.jpg" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header id="top"></header>
<main class="profile-page">
<figure><img src="profile.jpg" alt="profile pic" id="profile" /></figure>
<div class="name">
<p>KUCHI MERCY</p>
</div>
<div class="names"><p>Web Developer ♦ Content Writer ♦ Biochemist</p></div>
<br />
<hr />
<nav class="about">
<a>ABOUT KUCHI</a>| <a>WEB PROJECTS</a>| <a>ARTICLES</a>|
<a>RESEARCH THESIS</a>
</nav>
<hr />
<figure>
<img src="book.JPG" alt="book cover" id="book" />
</figure>
<br />
<div>
<p class="text">
<strong>"THE GAME OF MONOPOLY"</strong>- KUCHI MERCY's best selling
E-book is now available for purchase on Amazon
<img src="amazon icon.png" id="amazon" /> .
</p>
<p class="text">
To pre-order directly from the author, input your email address and click the Pre-order button!
</p>
<form><input type="email" placeholder="[email protected]" id="email" required />
<br/></form>
<script>let email = document.querySelector("#email");
function send() {
console.log(email.value);
}</script>
<br/>
<button class="btn" id="btn">Click to Pre-order</button>
<script>
function test() {
console.log("Pre-order Successful!")
console.log(email.value);
}
let btn = document.getElementById("btn");
btn.addEventListener("click", (event) => {
test();
});
</script>
<p class="slot">Limited slots available!</p>
</div>
</main>
</body>
<footer>
<div class="footer_top">
<a
href="https://web.facebook.com/mercy.duru.3"
class="fa fa-facebook" target="_blank"
></a>
<a href="https://wa.link/z4hoet" class="fa fa-whatsapp" target="_blank"></a>
<a href="https://twitter.com/Duru_Akuchi" class="fa fa-twitter" target="_blank"></a>
</div>
<br />
<div class="footer_bottom">
<img src="gmail icon.png" alt="Gmail" id="gmail" />
<p>© Kuchi Mercy and ReadyPenWriters, 2022. All Rights Reserved.</p>
<p>
Unauthorized use and/or duplication of this material without express and
written permission from this site’s author and/or owner is strictly
prohibited. Excerpts and links may be used, provided that full and clear
credit is given to Kuchi Mercy and ReadyPenWriters with appropriate and
specific direction to the original content.
</p>
</div>
</footer>
</html>