a) font-style: normal
b) font-style: italic
c) font-style: oblique
d) font-style: capitalize
Answer: d
Explanation: Text-transform: capitalize, capitalizes the first letter of each word whereas font-style set font as normal, italic, oblique. We use text-transform: uppercase and text-transform: lowercase to change the text from lowercase to uppercase and from uppercase to lowercase respectively.
Related Posts
Which function returns an array consisting of associative key/value pairs?
What will be the output of the following PHP code?
<?php
$fruits = array (“apple”, “orange”, array (“pear”, “mango”),
“banana”);
echo (count($fruits, 1));
?>Which of the following function is used to get the value of the previous element in an array?
What will be the output of the following PHP code?
<?php
$fruits = array (“apple”, “orange”, “banana”);
echo (next($fruits));
echo (next($fruits));
?>What will be the output of the following PHP code?
<?php
$state = array (“Karnataka”, “Goa”, “Tamil Nadu”,
“Andhra Pradesh”);
echo (array_search (“Tamil Nadu”, $state) );
?>Which in-built function will add a value to the end of an array?
Which of the following PHP function will return true if a variable is an array or false if it is not an array?
Join The Discussion