-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhead.php
51 lines (41 loc) · 1020 Bytes
/
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
<?php
if(@$key == null)
{
echo "Page Not Found";
}
else
{
?>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Card</title>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<a href="./"><img src="image/1.png"></a>
<p class="head_socio">
<a href="#">Visiting Cards</a>
||
<a href="#">Birthday Cards</a>
||
<a href="#">New Year Cards</a>
</p>
</header>
<nav>
<ul>
<li><a href="./">HOME</a></li>
<li><a href="?pid=page1">CARDS</a></li>
<li><a href="?pid=page2">SERVICES</a></li>
<li><a href="?pid=page3">PRICING</a></li>
<li><a href="?pid=page4">CONTACT US</a></li>
</ul>
</nav>
<section>
<?php
}
?>