-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (57 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>class activity</title>
</head>
<body>
<nav>
<a href="">Home</a>
<a href="">Send Money</a>
<a href="">Recieve money</a>
<a href="">Pages</a>
<a href="">About</a>
<a href="">Blog</a>
<a href="">Contact</a>
<a href="./website-html/website.html">SECOND EXCERCISE</a>
<button>Login</button>
</nav>
<main>
<p> SIMPLE AND EASY WAY TO</p>
<h1> Transfer Money across<br/> world In Real Time <br/>with No change</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Optio voluptas porro tenetur omnis! Ut vitae harum sunt, soluta adipisci vel exercitationem! Sit, voluptates! Sint necessitatibus reprehenderit similique nam, laborum velit.</p>
<button>Watch Video</button>
</main>
<aside>
<form >
<h1>Send Money</h1>
<label> Send Money</label>
<br>
<input type="text" placeholder="$1,000.00">
<br>
<label>Reciever Country</label>
<br>
<select name="" id="">
<option value=""> Select Country</option>
<option value="">Nigeria</option>
<option value="">Mali</option>
<option value="">Sudan</option>
<option value="">Iran</option>
</select>
<br>
<label>Delivery Type</label>
<br>
<select name="" id="">
<option value="">Choose Delivery type</option>
<option value="">Cash</option>
<option value="">Bitcoin</option>
<option value="">blockchain</option>
</select>
<br>
<button>Continue Transition</button>
<p>By clicking Continue, i am agree with <a href="">terms & policy</a></p>
</form>
</aside>
</body>
</html>