-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (100 loc) · 3.23 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
99
100
101
102
103
<!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>Akan Names</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="src/css/style.css" />
</head>
<body>
<!-- Alert Box Start -->
<div class="alert-container hide">
<div class="alert-overlay"></div>
<div class="text-container">
<p class="alert-close">x</p>
<p class="alert-text">Hello</p>
</div>
</div>
<!-- Alert Box End -->
<!-- Navbar Start -->
<header>
<div class="navbar">
<div class="brand">
<img src="./src/images/logo.png" width="175px" alt="Logo" />
</div>
<div class="icons">
<ul>
<li>
<a href="https://github.com/BrianMwevi" target="_blank"
><i class="fab fa-github-square"></i
></a>
</li>
<li>
<a href="#"><i class="fab fa-linkedin"></i></a>
</li>
<li>
<a href="#"><i class="fab fa-twitter-square"></i></a>
</li>
</ul>
</div>
</div>
</header>
<!-- Navbar End -->
<!-- Landing Page Start -->
<main>
<section class="home">
<div class="home-left">
<h1 class="home-title">Akan Names</h1>
<p class="description">
Often in Ghanian culture, children are given Akan names which
corresponds to the day of the week which they were born. It is
usually the first name of the child.
</p>
<p class="output">
Your Akan <br />Name Is: <span class="akan-name">"Fill Form"</span
><br />
<span class="message"
>You were born on
<span class="day birthday">"Find Out"</span></span>
</p>
</div>
<div class="home-right">
<form>
<p class="home-title form-title">Akan Form</p>
<div class="form-group">
<label
>Enter Date of Birth <br />
<input type="date" name="date" required />
</label>
</div>
<div class="form-group gender">
Select Gender <br />
<label class="male">
<input type="radio" name="gender" value="male" />Male
</label>
<label class="female">
<input type="radio" name="gender" value="female" />Female
</label>
</div>
<button>Submit</button>
</form>
<div class="home-right__footer">
<p class="credits">
Made with Love || <span class="day">Brian Mwevi</span>
</p>
</div>
</div>
</section>
</main>
<!-- Landing Page End -->
<script src="src/js/script.js"></script>
</body>
</html>