Using SBI Test 1
1) Copy text between notepad
-
Open notepad and type is some text.
-
Open another instance of notepad and place the two windows side by side.
-
Copy the text from one to the other.
2) Select and Copy the html between body tags and place it in a file text.txt
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Trellian WebPAGE">
<TITLE>Enter Page Title Here</TITLE>
</HEAD>
<BODY>
<H2 align=center>Test of copying from an HTML page</H2>
<P>The text here appears in the main body of the page.<BR>This is line 2
<BR>This is line 3 </P>
</BODY>
</HTML> |
3)Correct html errors- Here is the same html as above but with an error correct the error.
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Trellian WebPAGE">
<TITLE>Enter Page Title Here</TITLE>
</HEAD>
<BODY>
<H2 align=center>Test of copying from an HTML page
<P>The text here appears in the main body of the page.<BR>This is line 2
<BR>This is line 3 </P>
</BODY>
</HTML> |
Answers
|