Initial Commit

This commit is contained in:
Paul Warren 2024-02-10 17:57:43 +11:00
commit d383ee6544
6 changed files with 97 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*~

3
footer.php Normal file
View File

@ -0,0 +1,3 @@
<div id="footer">
<p>last updated: 2022-02-10 &nbsp; &copy; Paul Warren 2022</p>
</div>

3
header.php Normal file
View File

@ -0,0 +1,3 @@
<div id="header">
<h1>DAVIAC: A Relay Computer</h1>
</div>

27
index.php Normal file
View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>DAVIAC: A relay computer</title>
<link rel="stylesheet" href="style.css" type="text/css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="background">
<?php include("header.php"); ?>
<div id="heading">
<h1>DAVIAC: A Relay Computer
</div>
<div id="main-text">
<p>Insert image of main block
</div>
<?php include("sidebar.php");
include("footer.php");
?>
</div>
</body>
</html>

15
sidebar.php Normal file
View File

@ -0,0 +1,15 @@
<div id="sidebar">
<ul>
<li><a href="/CPU-A.php">CPU A</a></li>
<li><a href="/CPU-B.php">CPU B</a></li>
<li>PC</li>
<li> Registers / ALU</li>
<li>RAM</li>
<li>clock</li>
<li>ROM</li>
</ul>
</div>

46
style.css Normal file
View File

@ -0,0 +1,46 @@
#background {
background: none repeat scroll 0 0;
background-color: #DADADA;
width: 90%;
margin: auto;
border-radius: 15px;
padding: 10px;
}
#main-text {
float: left;
width: 50%;
}
#sidebar {
float: right;
border-radius: 15px;
width: 45%;
#width: 315px;
padding: 15px;
background-color:#A0A0A0;
}
#ipv6-cert {
text-align: center;
}
#ipv6-test {
float: right;
}
#footer {
clear: both;
}
#footer p {
font-size: 10px;
}
/* firefox 3 hacks */
img {
border: none;
}