I made the website with CSS and HTML.
CSS Code
CODE
body {
font-family: Times New Roman;
font-size: 14px;
color: #000000;
background-color: #FFFFFF;
}
li {
list-style-type: circle;
line-height: 100%;
list-style-image:;
}
h1 {
font-family: Times New Roman;
font-size: 32px;
font-weight: bold;
color: #000000;
}
h2 {
font-family: Times New Roman;
font-size: 18px;
font-weight: bold;
color: #000000;
}
a:link {
color: #000000;
text-decoration: none;
font-weight: bold;
}
li :link {
color: #000000;
text-decoration: underline;
font-weight: bold;
}
a:visited {
color: #000000;
text-decoration: none;
font-weight: bold;
}
li a:visited {
color: #000000;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #000000;
padding-bottom: 5px;
font-weight: bold;
text-decoration: none;
}
li a:hover {
display: block;
color: #000000;
padding-bottom: 5px;
font-weight: bold;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: 000000;
}
a:active {
color: #000000;
font-weight: bold;
}
#content {
background-image: url(bg.jpg);
background-repeat: no-repeat;
background-position: 25px -25px;
background-attachment: fixed;
position: absolute;
top: 0px;
left: 0px;
width: 1000;
height: 570;
margin: 0px;
margin-top: 0px;
border-left: 1px solid #000000;
}
#home {
position: absolute;
top: 275px;
left: 444px;
width: 10;
height: 10;
margin: 0px;
margin-top: 0px;
}
#welcome {
position: absolute;
top: 54px;
left: 460px;
width: 100;
height: 10;
margin: 0px;
margin-top: 0px;
}
#text {
position: absolute;
top: 70px;
left: 383px;
background: #cfcfc7;
width: 225;
height: 156;
overflow: scroll;
margin: 0px;
margin-top: 0px;
}
#about {
position: absolute;
top: 275px;
left: 365px;
width: 225;
height: 156;
margin: 0px;
margin-top: 0px;
}
font-family: Times New Roman;
font-size: 14px;
color: #000000;
background-color: #FFFFFF;
}
li {
list-style-type: circle;
line-height: 100%;
list-style-image:;
}
h1 {
font-family: Times New Roman;
font-size: 32px;
font-weight: bold;
color: #000000;
}
h2 {
font-family: Times New Roman;
font-size: 18px;
font-weight: bold;
color: #000000;
}
a:link {
color: #000000;
text-decoration: none;
font-weight: bold;
}
li :link {
color: #000000;
text-decoration: underline;
font-weight: bold;
}
a:visited {
color: #000000;
text-decoration: none;
font-weight: bold;
}
li a:visited {
color: #000000;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #000000;
padding-bottom: 5px;
font-weight: bold;
text-decoration: none;
}
li a:hover {
display: block;
color: #000000;
padding-bottom: 5px;
font-weight: bold;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: 000000;
}
a:active {
color: #000000;
font-weight: bold;
}
#content {
background-image: url(bg.jpg);
background-repeat: no-repeat;
background-position: 25px -25px;
background-attachment: fixed;
position: absolute;
top: 0px;
left: 0px;
width: 1000;
height: 570;
margin: 0px;
margin-top: 0px;
border-left: 1px solid #000000;
}
#home {
position: absolute;
top: 275px;
left: 444px;
width: 10;
height: 10;
margin: 0px;
margin-top: 0px;
}
#welcome {
position: absolute;
top: 54px;
left: 460px;
width: 100;
height: 10;
margin: 0px;
margin-top: 0px;
}
#text {
position: absolute;
top: 70px;
left: 383px;
background: #cfcfc7;
width: 225;
height: 156;
overflow: scroll;
margin: 0px;
margin-top: 0px;
}
#about {
position: absolute;
top: 275px;
left: 365px;
width: 225;
height: 156;
margin: 0px;
margin-top: 0px;
}
HTML Code
CODE
<html>
<head>
<title>i-pod</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="content">
</div>
<div id="home">
<a href="index.html">Home</a>
</div>
<div id="welcome">
Welcome!
</div>
<div id="text">
Welcome to this i-pod website that i made. It's pretty simple, just made with a little HTML and CSS code. It's pretty easy to make websites like this. The i-pod image you see as a background is taken from the Yahoo! image search and edited with Photoshop. Enjoy this pretty cool template!
<br>
<br>
Be sure to check out the <a href="about.html">"About"</a> section for a biography on me!
<br>
<br>
-Chris
</div>
<div id="about">
<a href="about.html">About</a>
</div>
<head>
<title>i-pod</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="css.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="content">
</div>
<div id="home">
<a href="index.html">Home</a>
</div>
<div id="welcome">
Welcome!
</div>
<div id="text">
Welcome to this i-pod website that i made. It's pretty simple, just made with a little HTML and CSS code. It's pretty easy to make websites like this. The i-pod image you see as a background is taken from the Yahoo! image search and edited with Photoshop. Enjoy this pretty cool template!
<br>
<br>
Be sure to check out the <a href="about.html">"About"</a> section for a biography on me!
<br>
<br>
-Chris
</div>
<div id="about">
<a href="about.html">About</a>
</div>
