A definition list would be good for that. Use the <dl> (definition list), <dt> (definition term), and <dd> (definition description) tags. Here is the syntax of the list:
<dl>
<dt></dt>
<dd></dd>
<dt></dt>
<dd></dd>
</dl>
student details example by html
HTML markup tags provide formatting instructions to a browser. An HTML document tells the browser how to display the content on a webpage.
You don't actually insert an image into an HTML page. An HTML page can display an image from any location where the browser has access to the file. Let us assume that the image you want to display on your HTML page is image.jpg. You use the tag to tell the browser to display your image. The person looking at your HTML page needs to be able to access the file on your desktop. You normally would upload your image to the Web server, so the visiting browser can see your image. If the image is on your desktop and the browser has access to your desktop content, here is the code you would use to display your image on the Web page:
HTML is the program language that actually displays the content on a page and without it or an alternative, such as php, nothing would display on the page.
You use HTML codes to tell the browser how to display your content. For example, if you want to display THIS in bold, you would send the following HTML code to the browser: THIS .
The best way is practice. You can also make a study deck to memorize the terms and definitions -- see the related question.
The H1 tag is used to display Headings in HTML. <H1> Hi this is a H1 header </H1> would display like = Hi this is a H1 header =
You write in HTML by using a variety of codes such as <HTML><B><BR><UL><Color> ect, to tell the internet browser what to display, HTML coding is a way of getting the browser to display what you want it to, and where you want it to be placed.
HTML is not a program it is a langue your computer speaks with the browser to create arguments and display data
HTML only can be used to display an image on homepage. Image SRC tag can be used to publish it.
student details example by html
HTML is tag based because that is the way it was designed. Tags allow you to turn on and turn off formatting features that tell a browser how to display content. An example would be Text Here to display Text Here in a bold font.
<3
HTML is not compiled. It is interpreted. Whichever browser you use is the interpreter for HTML. That is the job of a browser: to read and interpret HTML and then display the page.
There is no such thing as Dynamic HTML. However, you can dynamicly display HTML with the use of some dynamic languages - like PHP or ASP.