practask1 Flashcards

1
Q

Inserting div - helps the picture move if we don’t want to put it in a table.

A

<div>an image can be put here</div>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Styling the div - in the CSS, so it can move.

A

pic1{position:absolute;
top:200px;
left:500px;
background-color:#90ffff;}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

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.

A

<footer>Content for New footer Tag Goes Here</footer>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Float - when you want the div to be on the right or the left edge of the screen.

A

picright{ float:right;
background-color:#5a37ff;
width:300px;
height:200px;}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Styling links - first you need to have the link to do this

A

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;}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly