-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (54 loc) · 1.5 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Main page has 2 links that lead to other tutoring info-->
<title>PHP Message</title>
<meta charset="UTF-8">
<meta name="author" content="Himanshu">
<meta name="author" content="Kyle">
<style>
a {
font-family: arial, sans-serif;
}
.container {
font-family: arial;
font-size: 24px;
margin: auto;
}
.child {
width: 1000px;
height: 800px;
margin: 0 auto;
background-color: #f2f2f2;
text-align: center;
}
body {
background-color: #6600cc;
}
span {
display:block;
}
</style>
</head>
<body>
<div class="container">
<div class="child">
<p>
<span><b>Winona Tutoring Service</b></span>
</p>
<p>
<span>This websites purpose is to connect people in need of assistance to tutors</span>
</p>
<p>
<span>Click this link to see the available tutors</span>
<span><a href="tutoring_info.php">Link</a></span>
</p>
<p>
<span>Looking to become a tutor? Click this link to post your hours</span>
<span><a href="form.php">Form</a></span>
</p>
<img src = "logo.jpg", alt ="logo", width = "400", length = "400">
</div>
</div>
</body>
</html>