Search over 10,000 free study notes
Over a million students use our free study notes to help them with their homework
Top answers
What's wrong with the following HTML markup: <p style"font-size:10px;">Copyright <span>2015</span></p>?
The style attribute is missing an equals (=) sign. But under the current HTML standards, the double-quotes (") above are optional, as long as the attribute value has no spaces.
SM
Answered by
Sandor M.
•
HTML and CSS tutor
4104 Views
How many HTML heading levels are there?
The answer is 6. The HTML heading elements are h1, h2, h3, h4, h5, and h6. You can use these elements to create a hierarchical outline of the contents of an HTML document.
SM
Answered by
Sandor M.
•
HTML and CSS tutor
3925 Views
Make a dropdown list with red type and yellow background.
<select style="color: red; background-color: yellow"> <option value="1">1</option> <option value="2">2</option> <option value="3">3...
PW
Answered by
Piotr W.
•
HTML and CSS tutor
2313 Views
How do I setup my HTML/CSS environment?
HTML and CSS are languages that are just interpreted by any web browser. They don't act like other conventional programming languages which are compiled into machine code or interpreted in a virtual machine....
MM
Answered by
Matthew M.
•
HTML and CSS tutor
5976 Views
How to create a secure password?
There are many different layers that can create a secure password. One of them is using numbers, symbols and mix of upper and lower case letters in your password makes it harder for someone to guess your pas...
LP
Answered by
Leonidas P.
•
HTML and CSS tutor
3152 Views
1
2
3
4
5