-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.php
32 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Painting Collection</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/normalise.css" type="text/css" rel="stylesheet">
<link href="css/style.css" type="text/css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,400;0,600;0,700;1,400&display=swap" rel="stylesheet">
</head>
<body class="index-body">
<div class="index-title">
<h1>Welcome Inside Your Painting Collection</h1>
</div>
<nav class="navbar container">
<div>
<a href="gallery.php" class="">Explore Your Gallery</a>
</div>
<div>
<a href="form.php" class="">Add To You Collection</a>
</div>
</nav>
<footer>
<div>
<p>
© - Alexander Ferreira - project 2 - from I0 Academy - 2021
</p>
</div>
</footer>
</body>
</html>