-
Notifications
You must be signed in to change notification settings - Fork 0
/
owner.html
65 lines (59 loc) · 2.34 KB
/
owner.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
<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>owner</title>
<link rel="stylesheet" href="owner.css">
<script src="https://unpkg.com/scrollreveal"></script>
</head>
<body>
<div class="container">
<div class="grid">
<div class="item1">
<br><br><br><br><br><br><br>
<h3>COMPLETE YOUR PROFILE</h3>
<P>Fill the required datas to flex your room/pg.</P><br>
<a href="oformmain.html"> <button type="submit">CLICK HERE</button> </a>
</div>
<div class="item2">
<br><br><br><br><br><br><br>
<h3>GENERATE MONEY RECEIPT</h3>
<P>Generate the money receipt of your roomer. </P><br>
<a href="recepite.html"><button type="submit">CLICK HERE</button></a>
</div>
<div class="item3">
<br><br><br><br><br><br><br>
<h3>GET YOUR UPDATES</h3>
<p>Get your updates here (Roomer's requests)</p><br>
<button type="submit">CLICK HERE</button>
</div>
</div>
<div class="grid2">
<div class="item4">
<img src="complete.png" alt="complete" width="100px" height="100px">
</div>
<div class="item5">
<img src="generate.png" alt="generate" width="100px" height="100px">
</div>
<div class="item6">
<img src="update.png" alt="update" width="100px" height="100px">
</div>
</div>
</div>
<script>
ScrollReveal({
reset: true ,
distance: '60px',
duration: 2500,
delay: 500
});
ScrollReveal().reveal('.item1', { delay: 500, origin: 'bottom' });
ScrollReveal().reveal('.item2', { delay: 700, origin: 'bottom' });
ScrollReveal().reveal('.item3', { delay: 800, origin: 'bottom' });
ScrollReveal().reveal('.item4', { delay: 900, origin: 'top' });
ScrollReveal().reveal('.item5', { delay: 900, origin: 'top' });
ScrollReveal().reveal('.item6', { delay: 900, origin: 'top' });
</script>
</body>
</html>