-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.php
More file actions
89 lines (60 loc) · 2.97 KB
/
Home.php
File metadata and controls
89 lines (60 loc) · 2.97 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
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
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://use.fontawesome.com/releases/v5.11.2/css/all.css" rel="stylesheet" />
<title>Welcome | Virtual Notes</title>
<?php
include "includes/Head_links.php";
?>
</head>
<body>
<div class = "Header1">
<div class = "a">
<?php
include "includes/header.php";
?>
</div>
<img class = "img1" src="img/pexels-olia-danilevich-5088008.jpg">
<p id = "Quote2" >"Never stop <br>
Learning, because<br>
life never stops<br>
teaching."
</p>
<p id = "Quote3">"What we learn<br>
Becomes<br>
who we are."
</p>
</div>
<div id = "Quote4" >
What Notes do we offer
</div>
<div class = "C">
<div class="card card1 bg-light text-black ">
<img src="img/1.png" class="card-img img1" alt="11th Grade">
</div>
<div class="card card1 bg-light text-black ">
<img src="img/2.png" class="card-img img1" alt="12th Grade">
</div>
</div>
<div class= "final">
<div id="B1">
<img src="img/pexels-buro-millennial-1438081.jpg" id="imgG" alt="Grow Together">
</div>
<div id="B4">
Start Learning from today and let we play a small role <br>
in your mission so you can achieve your goals.<br><br>
<p>Press the below button To start your adventure</p>
<a href="#" data-toggle="modal" data-target="#signup-modal">
<button type="button" class="btn bts btn-outline-dark">Join Us</button>
</a>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<?php
include "includes/footer.php";
?>
</body>
</html>