What computer languages do you know or what ones are you learning/going to learn?
I know HTML and XHTML and i am learning CSS. (Basics).
Today i created this page, very simple but fun to do. You will also see there is a short Javascript script in there. Here is the code.
Remember this is just fun.
I know HTML and XHTML and i am learning CSS. (Basics).
Today i created this page, very simple but fun to do. You will also see there is a short Javascript script in there. Here is the code.
Code:
<html>
<head>
My CSS File
<style type="text/css">
body {background: tan}
p.leftmargin {margin-left: 2cm}
p.leftmargin {background-color: transparent}
p.leftmargin {color: blue}
a:link {color: green}
a:hover {color: red}
a:visited {color: blue}
</style>
<script type="text/javascript">
function message()
{
alert("Warning a virus may have installed on your computer, do not save and shutdown immediatly!")
}
</script>
</head>
<body onload="message()">
<p>This is a paragraph with no margin specified</p>
<p class="leftmargin">This is a paragraph with a specified left margin</p>
<p>This link should work how i want it to...</p>
<p><a href="http://www.google.co.uk" target="_blank">Google</a></p>
<br />
<br />
<p>It worked!!!</p>
<hr />
<p> So this is a small CSS file that i have completed, it shows the colours and it did use to have the link in different colours but now it doesnt. Oh well, as the message said i rule.</p>
</body>
</html>
Remember this is just fun.







