NEW
Font size
WorksheetsWeb Programming
Total questions: 20
Worksheet time: 10mins
The function of the link to connect between 1 file with other file in web pages. What is the correct HTML for creating a hyperlink in .html format?
<a url="http://www.w3schools.com">W3Schools.com</a>
<a name="http://www.w3schools.com">W3Schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
<href a>http://www.w3schools.com</a>
<a href=http://www.w3schools.com>W3Schools</a>
In css format, we can give a color consisting of a combination of red, green and blue. If we want to give white, then the correct writing (correct declaration) of value rgb in the program code is ..
rgb (0,0,0)
rgb (255;255;255)
rgb (“0”,”0”,”0”)
rgb (255,255,255)
rgb (255,0,255)
Look at the code
p {color : “red”};
.p {color : red};
#p {color : red};
<p> {color : red};
p {color : red};
No. 4
para1 {color : “yellow”};
.para1{color : yellow}
#para1{color : yellow }
#para-1{color : “yellow” }
#para1{color = yellow }
What is the correct code to change the color of element with the class “colortext” to green and change the text to uppercase and also align center?
Each element on HTML has type of displays that can set the layout of a content in a webpage. What kind of display is that supposed to be?
Setiap element pada HTML mempunyai tipe display masing-masing yang dapat mengatur tata letak suatu konten dalam halaman web. Display yang dimaksud adalah...
Internal, inline, external
Padding, margin, border
Text-align, text decoration, text-transform
Inline, block , inline-block
Font-size, font-family, font-weight
No.7
Semua elemen image akan tampil mengambang ke kiri. <image class=”gambar” src=”images/gambar.jpg”/></p>
Pengaturan style di atas tidak akan berlaku pada elemen paragraf tertentu. <p><rel id=”gambar” src=”images/gambar.jpg”/></p>
Elemen gambar yang ada pada file .html akan memiliki ukuran width = 50px dan height = 25px. <p><image class=”gambar” src=”images/gambar.jpg”> gambar </image></p>
Class gambar di dalam semua elemen paragraf akan diatur dengan style di atas. <p><img class=”gambar” src=”images/gambar.jpg”/></p>
Semua elemen image akan tampil mengambang ke kanan. <image class=”gambar” src=”images/gambar.jpg”/></p>
In css it is known the box model concept which states that each HTML block element has a padding, margin, content and border area. The correct sorting of the location for four areas are in an HTML elements are..(Dalam css dikenal konsep box model yang menyatakan bahwa setiap elemen blok HTML memiliki area padding, margin, content dan border. Urutan yang benar dari letak keempat area tersebut dalam suatu elemen HTML adalah)
Margin-padding-border-content
Content-padding-border-margin
Content-Border-margin-padding
Padding-margin-content-border
Border-content-padding-margin
Perhatikan potongan kode program berikut ini
.menu-item
{
color: aqua;
font-size : 20px;
}
Apabila di dalam suatu file yang disimpan dengan nama style.css terdapat kode seperti di atas, maka pernyataan yang benar terkait kode program tersebut adalah...
Hal itu menandakan bahwa selector tersebut adalah sebuah property di dalam file HTML
Hal itu menandakan bahwa selector tersebut terdapat kesalahan penulisan dan tidak dapat digunakan.
Hal itu menandakan bahwa selector tersebut adalah suatu css internal.
Hal itu menandakan bahwa selector tersebut adalah suatu class.
Hal itu menandakan bahwa selector tersebut adalah suatu id.
No 10
Pernyataan benar, alasan benar, dan keduanya menunjukkan hubungan sebab akibat
Pernyataan benar, alasan benar, tetapi keduanya tidak menunjukkan sebab akibat
Pernyataan benar, alasan salah
Pernyataan salah, alasan benar
Pernyataan dan alasan salah
What is the proper way to start writing a webpage?
Start with the <html> tag
Start with the <head> tag
Start with the <footer> tag
Don't use anything at all and just go at it
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
What is the correct HTML element for inserting a line break?
<lb>
<br>
<break>
What is the correct HTML for creating a hyperlink?
<a name="http://www.google.com">Google.com</a>
<a>http://www.google.com</a>
<a url="http://www.google.com">Google.com</a>
<a href="http://www.google.com">Google.com</a>
Which of these elements are all <table> elements?
<table><tt><td>
<tbl><tr><td>
<table><tr><td>
<tbl><tt><td>
Which of the following are the correct ways to implement CSS?
Inline
Internal
External
All of the above
What attribute is used to change the text color of a <label>?
background-color
color
col
None of all above
Where in an HTML document is the correct place to refer to an external CSS?
In the <head> section
At the top of the document
At the end of the document
In the <body> section
Which HTML tag is used to define an internal style sheet?
<script>
<css>
<style>
Which is the correct CSS syntax?
body {color: black;}
{body; color: black}
{body:color=black;}
body:color=black;
