-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
113 lines (73 loc) · 2.82 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
session_start();
?>
<!doctype html>
<html>
<head>
<title>About Us </title>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"
integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
html,body{
height: 100%;
font-family: Verdana, sans-serif;
}
.bg{
background-image: url("img/pink.jpg");
/* Full height */
height: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
#about {color: white;
font-size: 30px;
float: left;
margin:15px;
padding: 20px;
}
footer
{
position: absolute;
bottom: 0px;
left: 30%;
height: 5%;
float: left;
font-size: 16px;
}
</style>
</head>
<body class="bg">
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Sweets Recipes</a>
</div>
<ul class="nav navbar-nav">
<li ><a href="index.php" style="font-size: 17px;">Home</a></li>
<li><a href="Recipes.php" style="font-size: 17px;" >Recipes</a></li>
<li class="active"><a href="about.php" style="font-size: 17px;">About Us</a></li>
<li><a href="contact.php" style="font-size: 17px;" >Contact Us</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="welcome.php" style="font-size: 17px;"><span class="glyphicon glyphicon-user"></span> Profile</a></li>
<li><a href="logout.php" style="font-size: 17px;"><span class="glyphicon glyphicon-log-in"></span> Logout</a></li>
</ul>
</div>
</nav>
<p id="about"> We are two young programming students who are aiming<br> to become chefs and bring the best of our experiences as<br> both developers
and chefs to all the world. </p>
<img src="img/cloud.png" width="200" height="200" style="float:right; margin:30px;"/>
<img src="img/chef.png" width="200" height="300" style="float:right; margin:0px;"/>
<img src="img/think.png" width="200" height="250" style="float:right; margin:-50px;"/>
<footer>
<p><small>Copyright © 2018 <a href="index.html">Sweets Website</a> All rights reserved | Website By <a target="_blank" href="sarahalm462@gmail.com">Sarah Alm</a></small></p>
</footer>
</body>
</html>