-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (34 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AProject : Home</title>
<link rel="stylesheet" href="css/[email protected]">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="prompt-container">
<h1 id="title"></h1>
<div class="button-container">
<a href="view_projects.php" class="button">View available projects</a>
<a href="login.php" class="button">Log in and add / edit your own project</a>
</div>
</div>
</div>
<footer>
<div class="logo-container">
<a href="index.php">
<img src="img/ap.svg" alt="logo">
</a>
</div>
<div class="footer-text">
<span>©2023 M Kalam | [email protected]</span>
</div>
</footer>
<script src="js/main-menu.js"></script>
</body>
</html>