<!--HTML CODE-->
<html>
<head>
<!-- CSS CODE-->
<style>
/* Background Image */
body
{
background-image: url(Background.png); /* Used to add the Background Picture */
background-position: center; /* Used to center the Picture into the screen */
background-size:cover; /* Used to cover the picture in the entire screen */
background-repeat:repeat; /* Used to repeat the Background Picture */
background-attachment: fixed; /* Used to keep the background fixed when scrolling */
}
#p1
{
color:aqua;
}
</style>
<head>
<body>
<header>
</header>
<main>
<p id="p1"> GeorgeK@portfolio:~@</p>
</main>
<footer>
</footer>
</body>
</html>
THIS IS MY CODE