-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (56 loc) · 1.35 KB
/
Copy pathindex.html
File metadata and controls
64 lines (56 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Rex's Website</title>
<style>
body {
margin: 60px auto;
width: 70%;
}
.container {
}
nav ul, footer ul {
font-family:'Helvetica', 'Arial', 'Sans-Serif';
padding: 0px;
list-style: none;
font-weight: bold;
}
nav ul li, footer ul li {
display: inline;
margin-right: 20px;
}
a:link {
color: gray;
}
a:visited {
color: green;
}
a:hover {
color: rebeccapurple;
}
a:active {
color: teal;
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/cv">CV</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
</nav>
<div class="container">
<h1>Hello I am Rex Bouwense</h1>
<p>I am the unofficial leader of the Cochise Linux User Group. If you are a Linux user or want to know about a free alternative operating system for your personal computer you are invited to attend one of our meetings which take place at the Sierra Vista public library conference room on the 4th Saturday of every month from 1300-1545. Membership is free and all are welcome.</p>
</div>
<footer>
<ul>
<li><a href="mailto:majb@azloco.com">email</a></li>
<li><a href="https://github.com/MajB">github.com/MajB</a></li>
</ul>
</footer>
</body>
</html>