practask1 Flashcards
Inserting div - helps the picture move if we don’t want to put it in a table.
<div>an image can be put here</div>
Styling the div - in the CSS, so it can move.
pic1{position:absolute;
top:200px;
left:500px;
background-color:#90ffff;}
Inserting a footer - in the footer should add the date and the author with email link. it will often have a link to a privacy statement and the contact page.
<footer>Content for New footer Tag Goes Here</footer>
Float - when you want the div to be on the right or the left edge of the screen.
picright{ float:right;
background-color:#5a37ff;
width:300px;
height:200px;}
Styling links - first you need to have the link to do this
a:link {background-color: #107210;
color: #800000;
border-width: thick;
border-style: outset;}
a:visited {background-color: #107210;
color: #800000;
border-width: thick;
border-style: outset;}
a:hover {
color:#FF6633;}
a:active {
color: #FF6633;}