-
Notifications
You must be signed in to change notification settings - Fork 0
/
mate.html
34 lines (30 loc) · 1.14 KB
/
mate.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
<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>rent room</title>
<link rel="stylesheet" href="mate.css">
<script src="https://unpkg.com/scrollreveal"></script>
</head>
<body>
<div class="container2">
<div class="item"><img src="fri.gif" alt="house" width="100%" , height="100%"></div>
<div class="item2"><p> <strong>BOOK YOUR ROOM </strong><br>If you want to Book a house/room:</p>
<a href="roommate form.html"> <button type="submit" class="owner">Click Here</button> </a>
</div>
</div>
<script>
ScrollReveal({
reset: true ,
distance: '60px',
duration: 2500,
delay: 600
});
ScrollReveal().reveal('.container2', { delay: 600, origin: 'bottom' });
ScrollReveal().reveal('.item', { delay: 600, origin: 'bottom' });
ScrollReveal().reveal('.item2', { delay: 600, origin: 'right' });
ScrollReveal().reveal('.owner', { delay: 600, origin: 'bottom' });
</script>
</body>
</html>