Top answers


Explain what an external style sheet (CSS document) is for in a HTML document and write a line of HTML code to import one

Information about how the browser should render HTML elements (such as font styles, sizes and colours) can be specified using CSS in an external document, rather than within the HTML tags. This means the HTM...
TB
2615 Views

how to code the details tag/ how to put a drop down option in a form?

<html><head><title>basic form</title></head><body><details><p> standard room, family room </p></details></body></html>
ST
1730 Views

What’s the difference between a block-level element and an inline element in html?

Every element in HTML is displayed in one of a few ways. By default, most tags are either displayed as block-level or inline. Block A block-level element is drawn as a block that stretches to fill the full w...
KN
2975 Views

What is the correct HTML to link a stylesheet?

<head> <link rel="stylesheet" type="text/css" href="style.css"> </head>
GH
2194 Views

What is CSS used for?

CSS is used to describe the style of an HTML language. While php and HTML are more based on the functioning and the logic of the website, CSS concentrates on the design of the website itself. It descries how...
LL
Answered by Lina L. HTML and CSS tutor
2470 Views