-
Notifications
You must be signed in to change notification settings - Fork 0
/
head.php
84 lines (74 loc) · 1.74 KB
/
head.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/**
* Created by PhpStorm.
* User: udit
* Date: 12/10/17
* Time: 1:39 PM
*/
$current = $_SERVER['SCRIPT_NAME'];
switch ( $current ) {
case '/feedback.php':
$title = 'Feedback List';
break;
case '/people.php':
$title = 'Mystery Team';
break;
case '/dhruv-mistry.php':
$title = 'Dhruv Mistry';
break;
case '/shraddha-tailor.php':
$title = 'Shraddha Tailor';
break;
case '/jacky-huynh.php':
$title = 'Jacky Huynh';
break;
case '/eric-chee.php':
$title = 'Eric Chee';
break;
case '/inventory.php':
$title = 'Inventory';
break;
case '/porsche.php':
$title = 'Porche Mission E';
break;
case '/skylark.php':
$title = 'Skylark';
break;
case '/mclaren.php':
$title = 'McLaren';
break;
case '/egoista.php':
$title = 'Lamborghini Egoista';
break;
case '/vision.php':
$title = 'BMW Vision100';
break;
case '/mercedez.php':
$title = 'Mercedez F015';
break;
default:
$title = 'Mystery Vehicles';
break;
}
?>
<title><?php echo $title; ?></title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<link rel="stylesheet" href="feedback-form-css.css" type="text/css"/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i" rel="stylesheet">
<style>
body {
font-family: 'Open Sans', sans-serif;
font-style: normal;
background-color: black;
}
#clockbox {
color: red;
}
.container-first {
margin-top: 64px;
}
</style>