Create a link to each of the following:
a) index.html, located in the files directory;
b) index.html, located in the text subdirectory of the files directory;
c) index.html, located in the other directory in your parent directory (Hint:.. signifies parent directory.);
d) A link to the President’s email address (president@whitehouse.gov);
a) index.html, located in the files directory;
ANS:
b) index.html, located in the text subdirectory of the files directory;
ANS:
c) index.html, located in the other directory in your parent directory (Hint:.. signi-
fies parent directory.);
ANS:
d) A link to the President’s email address (president@whitehouse.gov);
ANS:
You might also like to view...
Which of the following statements specifies that the color of the text in txtBox be red?
(A) txtBox.Text = Color.Red (B) txtBox.ForeColor = Color.Red (C) txtBox.ForeColor = Red (D) txtBox = Color.Red
Answer the following statements true (T) or false (F)
1. ReDim statements can be used to change a one-dimensional array into a three-dimensional array. 2. Given the following statements, the first subscript in the second statement references a column. (T/F) Dim myArray(15, 20) As Double myArray(5, 10) = 0 3. Two-dimensional arrays are often referred to as tables or matrices. 4. The third statement below is NOT valid. (T/F) row = 5 col = 3 someArray(col, row) = 25