tags , e . - edmilson campos€¦ · disciplina: msc. alexandro vladno edmilson campos msc. fábio...

18
Disciplina: MsC. Alexandro Vladno Edmilson Campos MsC. Fábio Procópio Esp. Felipe Dantas MsC. João Maria MsC. Liviane Melo Corpo docente: Tags <frameset>, <frame> e <iframe>. AULA 05 Autoria Web

Upload: buihanh

Post on 12-Oct-2018

212 views

Category:

Documents


0 download

TRANSCRIPT

Disciplina:

MsC. Alexandro Vladno

Edmilson Campos

MsC. Fábio Procópio

Esp. Felipe Dantas

MsC. João Maria

MsC. Liviane Melo

Corpo docente:

Tags <frameset>, <frame> e <iframe>.

AULA 05

Autoria Web

2 colunas 2 linhas 1 coluna e 2 linhas 1 linha e 2 colunas

»

»

▪BODY <FRAMESET> </FRAMESET>

» FRAMESPACING

» FRAMEBORDER NO YES

» BORDER

» BORDERCOLOR

» COLS

» ROWS

▪ COLS ROWS

» COLS» ROWS

» ROWS

▪ <FRAME>

» SRC

» NAME

» NORESIZE

» SCROLLINGYES NO

<html> <head> <title>Coluna 1</title> </head> <body bgcolor = #FF00FF > <h3>Coluna 1</h3> </body> </html>

coluna1.html

<html> <head> <title>Coluna 2</title> </head> <body bgcolor = #800080> <h3>Coluna 2</h3> </body> </html>

coluna2.html

2 colunas

<html> <head> <title>Página - 2 colunas</title> </head> <frameset cols="20%,*" frameborder="YES" border="1" framespacing="0"> <frame src="coluna1.html" name="leftframe" noresize="NO" scrolling="NO" /> <frame src="coluna2.html" name="mainframe" /> </frameset> <noframes> <body></body> </noframes> </html>

frame2Colunas.html

<html> <head> <title>Linha 2</title> </head> <body> <h3>Linha 2</h3> </body> </html>

linha2.html

<html> <head> <title>Linha 1</title> </head> <body bgcolor = #FF0000> <h2 style = "color:white">Linha 1</h2> </body> </html>

linha1.html

<html> <head> <title>Página - 2 linhas</title> </head> <frameset rows="80,*" frameborder="YES" border="1" framespacing="0"> <frame src="linha1.html" name="topframe" noresize="NO" scrolling="NO" /> <frame src="linha2.html" name="mainframe" /> </frameset> <noframes> <body></body> </noframes> </html>

2 linhas

frame2Linhas.html

<html> <head> <title>Página – 1 coluna 2 linhas</title> </head> <frameset rows="*" cols="15%,*" frameborder="NO” border="0" framespacing="0"> <frame src="coluna1.html" name="leftframe" noresize scrolling="NO" /> <frameset rows="15%,*" frameborder="NO" border="0" framespacing="0"> <frame src="linha1.html" name="topframe" noresize scrolling="NO" /> <frame src="linha2.html" name="mainframe" /> </frameset> </frameset> <noframes> <body></body> </noframes> </html>

frame1Coluna2Linhas.html

1 coluna e 2 linhas

<html> <head> <title>Página – 1 linhas 2 colunas</title> </head> <frameset rows="80,*" cols="*" frameborder="NO" border="0" framespacing="0"> <frame src="linha1.html" name="topframe“ /> <frameset cols="10%,*" frameborder="NO" border="0" framespacing="0"> <frame src="coluna1.html" name="leftframe“ /> <frame src="coluna2.html" name="mainframe" /> </frameset> </frameset> <noframes> <body></body> </noframes> </html>

frame1Linha2Colunas.html

1 linha e 2 colunas

<iframe src="iframe.html" name="_iframe" id="_iframe" width="100%" height="500" scrolling="auto" border="0" frameborder="0"> </iframe>

▪<IFRAME>