You are on page 1of 4

<html>

<head>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta charset="utf-8" />

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>School Fees Payment System</title>

<!-- BOOTSTRAP STYLES-->

<link href="css/bootstrap.css" rel="stylesheet" />

<!-- FONTAWESOME STYLES-->

<link href="css/font-awesome.css" rel="stylesheet" />

<!-- GOOGLE FONTS-->

<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />

<style>

.myhead{

margin-top:0px;

margin-bottom:0px;

text-align:center;

input[type=text] {

padding: 0;

height: 30px;
position: relative;

left: 0;

width:100%;

outline: none;

border: 1px solid #cdcdcd;

border-color: rgba(0, 0, 0, .15);

background-color: grey;

font-size: 16px;

.advancedSearchTextbox {

width: 526px;

margin-right: -4px;

input[type=submit] {

background-color: #4CAF50; /* Green */

border: none;

color: white;

padding: 15px 32px;

text-align: center;

text-decoration: none;

display: inline-block;

font-size: 16px;

margin-top:50px;

}
</style>

</head>

<body>

<div data-role="page" id="signinpage" style="background:white;">

<div data-role="main" style="margin: auto;width:85%;" class="ui-content">

<h2 style="text-shadow:none;margin:auto;text-align:center;margin-top:5%;">Add Cart</h2>

<form action="fileuploded.php" method="POST" enctype="multipart/form-data">

<h4 style="color:#f85f6a;text-shadow: none;">Enter menu price</h4>

<div class="sutxt">

<input id="menuprice" name="menuprice" type="text" placeholder="Menu price" style="text-


shadow:none;background:white;" />

</div>

<h4 style="color:#f85f6a;text-shadow: none;">Enter total quantity</h4>

<div class="sutxt">

<input id="totalquantity" name="totalquantity"" type="text" placeholder="Quantity" style="text-


shadow:none;background:white;" />

</div>

<h4 style="color:#f85f6a;text-shadow: none;">Upload Icon</h4>

<div class="sutxt">

<input type="file" name="fileToUpload" />

</div>

<input type="submit" value="submit" name="submit" style="opacity: initial;text-align:


center;text-shadow: none;color: white;font-weight: bold;" >
</form>

</div>

</div>

</body>

</html>

You might also like