-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.php
More file actions
37 lines (37 loc) · 1.53 KB
/
Copy pathhome.php
File metadata and controls
37 lines (37 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://kit.fontawesome.com/c51f44d97a.js" crossorigin="anonymous"></script>
<?php $page_title = "Sign Up 101"; ?>
<?php include "includes/metadata.php" ?>
</head>
<body>
<?php include 'includes/header.php'; ?>
<div class="content">
<section class="home">
<h2>Group Organizing Made Easy</h2>
<a href="signup.php"><button id="signup" name="singup">Sign up <i class="fas fa-pencil-alt"></i></button></a>
</section>
<section class="home">
<h2>What we Offer</h2>
<p>A fast and easy way to organize your schedule. By creating time slot sheets, team members are able to more efficiently work together. Enjoy your journey! </p>
</section>
<section class="home">
<h2>Meet the Creators</h2>
<p>
Hi! I'm Fanshu. I'm a Computer Science and Business student.
I love fitness and muscle building. Coding is what motivated me to think logically.
</p>
<p>
Hi, my name is Eesha. I'm 19 years old student studying Computer Science at Trent University.
I enjoy reading, painting and swimming.
</p>
<p>
Hi there! I'm Devashish. I'm a Computer Science student specializing in Software Engineering.
You can often find me tossing a frisbee around my neighbourhood and sometimes even on long bike rides.
</p>
</section>
</div>
<?php include "includes/footer.php" ?>
</body>
</html>