-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
40 lines (36 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta Tags -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="description" content="This is the official quoteit website" />
<meta name="keywords" content="quote, it, day" />
<meta name="author" content="Adrian Petrovic, Paul Pietzko" />
<!-- Infos -->
<title>QuoteIt</title>
<!-- Links -->
<link rel="stylesheet" href="css/styles.css" />
<link rel="canonical" href="https://www.quoteit.com/" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap"
rel="stylesheet"
/>
<!-- Scripts -->
<script src="js/jquery.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery.js"><\/script>');
</script>
<script src="js/scripts.js"></script>
</head>
<body>
<!-- HTML -->
<div class="main">
<div class="quotecontainer">
<blockquote class="quote"></blockquote>
<blockquote class="author"></blockquote>
</div>
</div>
</body>
</html>