-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
92 lines (81 loc) · 3.14 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
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
<!DOCTYPE html>
<html lang="EN">
<head>
<title>
RemindMe! | HomePage
</title>
<link rel="stylesheet" href="homestyle.css" />
<body>
<header>
<div class="container">
<div id="heading">
<h1>RemindMe!</h1>
</div>
<a href="userAccount.php"><img src="usericon.png" alt="usericon"
style="height: 50px; width: 50px; float: right;"></a>
</div>
</header>
<nav>
<ul>
<li class="current"><a href="home.html">Home</a></li>
<li><a href="IT22923424/src/calendar.html">Calendar</a></li>
<li><a href="user.php">To-Do</a></li>
<li><a href="contactus.html">Contact Us</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</nav>
<section id="whatwedo">
<div class="container">
<h2>What RemindMe! do..</h2>
<p>
RemindMe! is an online web solution that helps users with their daily tasks.
RemindMe! sends reminders to users on their events and bill payments.
<br>All you have to do is add your events to your calender.
you will never miss a bill payment or an event. Because remindMe! is their to remind you.
<br>You can also make a list of your daily tasks ,so that you can make your day more productive.
</p>
<aside id="login">
<a href="login.php">Login</a>
<br>
<p>If You Want To be a part of our Services,</p>
<br>
<br>
<br>
<br>
<a href="createaccount.php">Create Account</a>
</aside>
</div>
</section>
<section class="container">
<h2>Customer Reviews</h2>
<div id="review1">
<h4>Jessica pearson</h4>
<img src="./mother.jpg">
<p>I'm a housewife and a mother of 3. RemindMe! was first introduced
to me by a friend of mine. I've been using it for 2 years now. because of remind me
for the past two years I've never missed a school event or a bill payment.
RemindMe! makes my everyday life very easy.
I would recommend this website to anyone who wants to organize their work according to their events.
</p>
</div>
<div id="review2">
<h4>Noah Fernando</h4>
<img src="./worker.jpg">
<p>I work in coroperate sector. So everyday i deal with alot of people through meetings and events.
in the begining of my career it was hard for me to remember all my events and meetings.So I missed alot
of them.
After I found RemindMe! everything changed. RemindMe! sends you reminders so you never miss a meeting or
an event.
Thank You RemindMe! for helping me.
</p>
</div>
</section>
<footer>
<p>RemindMe! , Copyright © 2023</p>
<br>
<script>
document.write(Date());
</script>
</footer>
</body>
</html>