-
Notifications
You must be signed in to change notification settings - Fork 2
/
member.php
43 lines (39 loc) · 1.21 KB
/
member.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
<!DOCTYPE html>
<html>
<head>
<title>Foodiliver</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/mainCSS.css">
</head>
<body class="container-fluid">
<?php include("navTop/navMember.php") ?>
<div class="container-fluid" style="margin-top:100px;">
<div class="col-md-6">
<img src="image/yoona.jpg" alt="profile" align="center">
</div>
<div class="jumbotron col-md-6">
<h2>About Me</h2>
<table>
<tr>
<th>Name: </th><td>Im Yoona<//td>
</tr>
<tr>
<th>Born: </th><td>30 May 1990</td>
</tr>
<tr>
<th>Course: </th><td>Bachelor of Art(Hons) Contemporary Dance</td>
</tr>
</table>
</div>
</div>
<div id="order">
<button onclick="location.href = 'order.php';" id="myButton" class="float-left submit-button" >
<span class="glyphicon glyphicon-plus"></span> ORDER
</button>
</div>
</body>
</html>