-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
47 lines (47 loc) · 1.93 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="./home.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:[email protected]&family=Shrikhand&display=swap" rel="stylesheet">
<link rel="icon" href="./images/watania.webp" type="image/png">
</head>
<body>
<div class="home_page">
<div class="grid-container">
<div class="header_image">
<img src="./images/Group111.webp" alt="header_image">
</div>
<div class="sign_image">
<div class="header-logo">
<img src="./images/Group93.webp" alt="headline">
<div class="content">
<h2>September Prizes</h2>
<img src="./images/Group94.webp" alt="Group94">
</div>
<p>Enter Client Data To Win</p>
</div>
<div class="form">
<div class="input-container">
<label for="name">Client Name</label>
<input type="text" id="name" name="name" placeholder="eg: Hassan Ali...">
</div>
<div class="input-container">
<label for="amount">Invoice Amount</label>
<input type="text" id="amount" name="amount" placeholder="eg. 100,000">
</div>
<div class="sign_btn">
<a href="./index.html">
<button>Sign Up</button>
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>