-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
45 lines (42 loc) · 1.57 KB
/
about.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
43
44
45
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>$FINDER</title>
<meta name="description" content="Welcome to $FINDER. Find the best deals and save your Dollars" />
<link rel="stylesheet" href="indexstyles.css" />
<link href="https://fonts.googleapis.com/css2?family=Teko:wght@300&display=swap" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@200&display=swap" rel="stylesheet"
type="text/css" />
<link rel="icon" href="images/favicon.png" type="image/png" />
</head>
<body>
<header>
<?php
include("phpcomp/navigation.php");
?>
</header>
<main>
<h2 class="about-heading poster-heading">Proposal Poster</h2>
<img src="images/2399.png" alt="Dollar Finder Proposal" class="poster-img" />
<h2 class="about-heading video-heading">Proposal Video</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Z7pfjg0NKnU" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen class="proposal-video"></iframe>
</main>
<footer class="footer about-footer">
<?php
include("phpcomp/footer.php");
?>
</footer>
</body>
<?php
include("script.php");
?>
</html>