-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudy_store.php
More file actions
34 lines (33 loc) · 1.02 KB
/
Copy pathstudy_store.php
File metadata and controls
34 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>StudyBuddy | Study Store Page</title>
<link rel="shortcut icon" type="icon" href="img">
<link rel="icon" type="image/x-icon" href="css/img/StudyBuddy.ico">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/nav.css">
<link rel="stylesheet" href="css/notepad.css">
<link rel="stylesheet" href="css/study_store.css">
<script src="https://kit.fontawesome.com/8ef5e4d9da.js"></script>
</head>
<body onload="Online()">
<?php
include 'nav.php';
?>
<section>
<div id="sc-wrapper">
<div class="sc-con">
</div>
<div class="sc-con"></div>
<div class="sc-con"></div>
<div class="sc-con"></div>
<div class="sc-con"></div>
</div>
</section>
<script src="js/jQuery-3.6.4.js"></script>
<script src="js/main.js"></script>
<script src="js/notepad.js"></script>
</body>
</html>