-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
93 lines (85 loc) · 3.21 KB
/
about.php
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
93
<?php
session_start();
if(!isset($_SESSION["username"])){
header("Location: login.php");
die;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="icon" href="club_logo.png">
</head>
</head>
<body class = "w3-sand">
<header>
<div class="w3-bar w3-deep-purple" >
<h1 style="text-align:center">SIUE Real Estate club</h1>
</div>
<div class="w3-bar w3-black" >
<div class="w3-bar w3-black" >
<a href="index.php" class="w3-bar-item w3-button">Home</a>
<a href="schedule.php" class="w3-bar-item w3-button">Upcoming events</a>
<a href="about.php" class="w3-bar-item w3-button">Our team</a>
<a href="https://www.instagram.com/re.club.siue/" class="w3-bar-item w3-button"><img src="instagram_icon.png" alt="instagram icon." width="30" height="23"></a>
</div>
</header>
<main class="w3-panel w3-sand">
<div class="w3-panel w3-sand" style="text-align:center;">
<u><h1 style="font-family:garamond; text-align:center" >
President
</h1></u>
</div>
<div class="w3-panel w3-sand" style="text-align:center;">
<img src="miguel.jfif" alt="inrto photo" >
</div>
<div class="w3-container w3-sand" style="text-align:center;">
<h2 style="font-family:garamond; text-align:center" >
Miguel Estep
</h2>
<h3>
<a href="mailto:[email protected]">[email protected]</a>
</h3>
</div><br><br>
<div class="w3-panel w3-sand" style="text-align:center;">
<u><h1 style="font-family:garamond; text-align:center" >
Vice President
</h1></u>
</div>
<div class="w3-panel w3-sand" style="text-align:center;">
<img src="larae.jfif" alt="inrto photo" >
</div>
<div class="w3-container w3-sand" style="text-align:center;">
<h2 style="font-family:garamond; text-align:center" >
Larae Bigard
</h2>
<h3>
<a href="mailto:[email protected]">[email protected]</a>
</h3>
</div><br><br>
<div class="w3-panel w3-sand" style="text-align:center;">
<u><h1 style="font-family:garamond; text-align:center" >
Treasurer/Secretary
</h1></u>
</div>
<div class="w3-panel w3-sand" style="text-align:center;">
<img src="Jimmy.jfif" alt="inrto photo" >
</div>
<div class="w3-container w3-sand" style="text-align:center;">
<h2 style="font-family:garamond; text-align:center" >
Jimmy Tran
</h2>
<h3>
<a href="mailto:[email protected]">[email protected]</a>
</h3>
</div><br><br>
</main>
<footer class="w3-sand">
<p>
© 2022 Jimmy Tran
</p>
</footer>
</body>