-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivity2.html
More file actions
95 lines (86 loc) · 2.86 KB
/
activity2.html
File metadata and controls
95 lines (86 loc) · 2.86 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
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Roysha</title>
</head>
<body>
<section>
<nav>
<div class="logo">
<!-- <img src="" alt=""> -->
<h2>Roysha</h2>
</div>
<div class="navbar">
<a href="">Home</a>
<a href="/">Activity 1</a>
<a href="./activity2.html">Activity 2</a>
<a href="/activity3.html">Activity 3</a>
<a href="./table-2.html">Activity 4</a>
<a href="">Blog</a>
<a href="">Contact</a>
</div>
<div class="login">
<button>Login</button>
</div>
</nav>
<!-- nav ends here -->
<!-- hero content starting -->
<div class="hero details">
<div class="hero-content">
<h5>
SIMPLE AND EASY WAY TO <br>
</h5>
<h3>
Transfer Money Across <br> The World in Real Time <br> With No Charge
</h3>
<p>Lorem ipsum dolor sit amet, consectetur <br>
adipisicing elit. Veniam modi rerum,<br>
ad et officia fugit iusto provident quam <br> optio quas sint alias totam magni animi <br> explicabo aperiam libero dolores corrupti!</p>
</div>
<!-- hero content ends here -->
<div>
<div class="watch video">
<button>watch video</button>
</div>
<form action="">
<div class="send-money">
<h4>Send Money</h4>
<div>
<label for="">Send amount</label>
<select name="" id="">
<option value="">Enter Amount</option>
<option value="">option two</option>
<option value="">option three</option>
</select>
</div>
<div>
<label for="">Receiver Country</label>
<select name="" id="">
<option value="">Select Country</option>
<option value="">Ghana</option>
<option value="">France</option>
</select>
</div>
<div>
<label for="">Delivery Type</label>
<select name="" id="">
<option value="">Choose Delivery Type</option>
<option value="">Choose Delivery Type 2</option>
<option value="">Choose Delivery Type 3</option>
</select>
</div>
<div class="Continue Transition">
<button>Continue Transition</button>
</div>
<p>By clicking continue, i am agree with <a href="">Terms & Policy</a> </p>
</div>
</form>
</div>
</div>
</div>
</section>
</body>
</html>