-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (75 loc) · 3.42 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
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>HOME</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="manifest" href="../site.webmanifest">
<link rel="apple-touch-icon" href="../icon.png">
<!-- Place favicon.ico in the root directory -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="../css/normalize.css">
<link rel="stylesheet" href="../css/main.css">
<link rel="stylesheet" href="../css/index.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/3/w3.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<!-- Add your site or application content here -->
<script src="../js/vendor/modernizr-3.6.0.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="../js/vendor/jquery-3.3.1.min.js"><\/script>')</script>
<script src="../js/plugins.js"></script>
<script src="../js/main.js"></script>
<script type="text/javascript" src="../js/main.js"></script>
<!-- Basic Navigation -->
<div class="container">
<nav class="navbar">
<a href="index.html" class="w3-button w3-bar-item">Home</a>
<a href="jsp/decision.jsp" class="w3-button w3-bar-item">Decision Guide</a>
<a href="jsp/summary.jsp" class="w3-button w3-bar-item">Summary</a>
<a href="jsp/forumPosts.jsp" class="w3-button w3-bar-item">Forums</a>
<a href="jsp/doctor.jsp" class="w3-button w3-bar-item">Doctor Portal</a>
<div class="dropdown">
<button class="dropbtn w3-bar-item">More</button>
<div class="dropdown-content">
<a href="html/register.html" class="w3-button w3-bar-item">Sign Up</a>
<a href="html/login.html" class="w3-button w3-bar-item">Sign In</a>
<a href="html/contact.html" class="w3-button w3-bar-item">Contact</a>
</div>
</div>
</nav>
</div>
<!-- Some pictures on a slide show to add some looks to the webpage -->
<section>
<div class="carousel">
<img class="homeSlides" src="../img/img1.jpg" style="width:100%">
<img class="homeSlides" src="../img/img2.jpg" style="width:100%">
<img class="homeSlides" src="../img/img3.jpg" style="width:100%">
</div>
</section>
<!--- Some info text --->
<div class="container">
<h3>McMaster PTDA</h3>
<p>An intuitive website designed to inform parents of children with congenital adrenal hyperplasia the surgical treatment available</p>
</div>
<div class="container">
<h3>The Developers</h3>
<br>
<div class="row">
<div class="col">
<p><strong>Sean Chan</strong></p>
<img src="../img/profile.png" class="person" alt="Front End">
</div>
<div class="col">
<p><strong>Lisa Ewen</strong></p>
<img src="../img/profile.png" class="person" alt="Back End">
</div>
</div>
</div>
</body>
</html>