web_AI-3/board.php

40 lines
1002 B
PHP
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<!-- enable utf-8 encoding for umlauts etc.-->
<meta charset="utf-8">
<!-- Description of what this dose -->
<meta name ="viewport" content="width=device-width, initial-scale=1">
<!-- link to the default css file -->
<link rel="stylesheet" href="css/stylesheet.css"/>
</head>
<body>
<div>
<div>
<header>
2017-01-11 21:42:17 +01:00
<!-- The title begins here -->
<h1>Board</h1>
<!--The Title ends here -->
<!-- The sidebar naviagtion begins here -->
<nav>
2017-01-06 12:48:12 +01:00
<?php
2017-01-06 13:11:00 +01:00
include 'navigation.php';
2017-01-06 12:48:12 +01:00
?>
</nav>
2017-01-11 20:21:10 +01:00
<!-- The sidebar naviagtion ends here -->
</header>
</div>
2017-01-11 21:42:17 +01:00
<!-- The Picture upload Button begins here -->
<div>
<form action="upload.php" method="POST" enctype="multipart/form-data">
<input type="file" name="file">
<button type="submit" name="submit">UPLOAD</</button>
</div>
<!-- The Picture upload Button ends here -->
</div>
</body>
</html>