-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Age Calculator Home Page</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/index.css" />
<link rel="stylesheet" href="/index.css" />
</head>
<body>
<div class="bg-container">
<header>
<div class="header-head container">
<h1>Age Calculator Website...</h1>
</div>
</header>
<picture>
<div class="personImg">
<img id="random-image" src="" alt="" />
</div>
</picture>
<section class="container">
<div class="section-header">
<h2>Discover Your Age in an Instant!</h2>
<p>
Calculate the Precise Number of Years, Months, and Days You've Lived.
</p>
</div>
<div class="content-container">
<ul class="features">
<h3>Features</h3>
<span>
<i class="fa-solid fa-circle-check" style="color: #1f4b4e"></i>
<li>Accurate Age Calculation</li>
</span>
<span>
<i class="fa-solid fa-circle-check" style="color: #1f4b4e"></i>
<li>Easy-to-Use Interface</li>
</span>
<span>
<i class="fa-solid fa-circle-check" style="color: #1f4b4e"></i>
<li>Share Your Milestones</li>
</span>
<span>
<i class="fa-solid fa-circle-check" style="color: #1f4b4e"></i>
<li>Quick Results</li>
</span>
</ul>
<button><a href="app.html">Calculate Your Age Now!</a></button>
</div>
</section>
</div>
<script src="/index.js"></script>
</body>
</html>
<!-- [Landing Page ]
-->