-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
65 lines (58 loc) · 2.87 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="CSS/contact.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<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">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<link rel="stylesheet" href="../CSS/common.css">
<title>WebCoursera</title>
</head>
<body >
<div class="background">
<div id="nav-container">
</div>
<div class="about">
<div class="image">
<img src="images/landing.png"
alt="">
</div>
<div class="content" style="color: white; ">
<div class="inner-content">
<h3>Welcome to <span style="color: red !important;">WebCoursera! </span></h3>
<p>Ready to take your first step towards becoming a web developer? Or are you mid-career professional seeking to add a new skill to your repertoire? You've come to the right place! No matter your expertise, you'll find something here. From introductory courses to intense hands-on sessions, we have it all!</p>
<p style="color:whitesmoke !important">So <a href="Routes/signup.php" >sign up</a> and start coding!</p>
<p> <a href="Routes/login.php">Login Here</a> if you have an account</p>
<p> Check out our <a href="Routes/coursespage.php">Courses</a> here!</p>
</div>
</div>
</div>
<div class="footer-filler"></div>
<div id="footer-container"></div>
</body>
</html>
<style>
.content{
background-color: rgba(0, 0, 0, 0.6);
border-radius: 0 40px 0 40px;
margin-right: 10px;
}
.inner-content{
background-color: rgba(0, 0, 0, 0.6);
border-radius: 50px 0 50px 0;
padding: 10px;
}
</style>
<script>
$(document).ready(function(){
$("#nav-container").load("/Components/nav.php");
$("#footer-container").load("/Components/footer.html");
});
</script>