Browse --- Chat --- Wekan

Commit ece1a0ba authored by kc's avatar kc
Browse files

Initial commit

parents
Showing with 45 additions and 0 deletions
+45 -0
Sample php repo for stephanie to clone
app.js 0 → 100644
<div id="footer">
This is a footer
</div>
<div id="header">
This is a header
</div>
index.php 0 → 100644
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PHP</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<scripts src="app.js"></script>
</head>
<body>
<?php include("./header.php") ?>
<div id="main">
This is a main div
</div>
<?php include("./footer.php") ?>
</body>
</html>
style.css 0 → 100644
#header {
width: 100%;
height: 200px;
border: 1px solid black;
background-color: maroon;
}
#main {
width: 100%;
height: 400px;
border: 1px solid black;
background-color: aqua;
}
#footer {
width: 100%;
height: 100px;
border: 1px solid black;
background-color: teal;
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment