40 lines
646 B
PHP
40 lines
646 B
PHP
<html>
|
|
<head>
|
|
<title>Manufacturing</title>
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
<link rel="shortcut icon" href="http://lasuca.com/images/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="center">
|
|
|
|
<div class="header">
|
|
<h1>LASUCA CONTROLS</h1>
|
|
<p>Mill Lab Test Spreadsheet</p>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-3 menu">
|
|
<ul>
|
|
<li>
|
|
<a href="overview.php">Overview</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
|
|
<div class="col-12">
|
|
|
|
<?php include("bigsheet.php");?>
|
|
|
|
</div>
|
|
</div>
|
|
<?php include 'footer.php';?>
|
|
</div>
|
|
</body>
|
|
</html>
|