first commit
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Week 3 Practice Page</title>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<link href="styles/style.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<header class="Title" >
|
||||
<h1>Week 3 Practice Page</h1>
|
||||
</header>
|
||||
<section>
|
||||
<!-- Content Start -->
|
||||
<header>
|
||||
<h1>Welcome to My Site</h1>
|
||||
<p>These pages are the work of George Wilkinson</p>
|
||||
</header>
|
||||
<p>
|
||||
I am learning Computer Science at the
|
||||
<a href="https://www.salford.ac.uk">University of Salford</a>.
|
||||
I decided to study my course at Salford because:
|
||||
</p>
|
||||
<ol>
|
||||
<li>The staff are so friendly</li>
|
||||
<li>It is easy to get to by train</li>
|
||||
<li>They use GNU/Linux (some of the time)</li>
|
||||
</ol>
|
||||
<p>
|
||||
My course is provided by the <a href="https://www.cse.salford.ac.uk">
|
||||
School of Computing, Science & Engineering</a>, which is
|
||||
based in the Newton Building. The Newton Building was not built
|
||||
recently, and would benefit from some improvements. If it were
|
||||
my decision i would:
|
||||
</p>
|
||||
<ul>
|
||||
<li>Improve the lighting in the second floor computer labs</li>
|
||||
<li>Fix the heating!</li>
|
||||
<li>Decorate the staff offices</li>
|
||||
<li>Improve the building entrance</li>
|
||||
</ul>
|
||||
<h2>Computer Science</h2>
|
||||
<p>
|
||||
During the first semester of my first year the degree has
|
||||
several modules. Among the modules I am studying are:
|
||||
</p>
|
||||
<dl>
|
||||
<dt>Computer Architecture</dt>
|
||||
<dd>This includes a study of the architecture and operation
|
||||
of a simple CPU</dd>
|
||||
<dt>Study Skills</dt>
|
||||
<dd>This module covers Personal Development Planing</dd>
|
||||
<dt>Web Page Design</dt>
|
||||
<dd>This is all about HTML5 and CSS</dd>
|
||||
</dl>
|
||||
<!-- Content End -->
|
||||
</section>
|
||||
<footer>
|
||||
<address>
|
||||
<a href="mailto:G.Wilkinson2@edu.salford.ac.uk">George Wilkinson</a>
|
||||
</address>
|
||||
<p class="modifydate" >Last Modified: Friday 6th October 2023</p>
|
||||
</footer>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,23 @@
|
||||
|
||||
footer {
|
||||
position: fixed;
|
||||
bottom: 1px
|
||||
}
|
||||
|
||||
footer {
|
||||
display: flexbox;
|
||||
}
|
||||
|
||||
address {
|
||||
display: absolute;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.modifydate {
|
||||
display: absolute;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
section {
|
||||
position: absolute;
|
||||
}
|
Reference in New Issue
Block a user