Give me some basic code about HTML

Asked By 30 points N/A Posted on -
qa-featured

Hello Experts,

I am new in the web site designing. I want to learn HTML. Please anyone give me some basic html code thanks him / her advance.

SHARE
Best Answer by workman Irwin
Answered By 0 points N/A #163240

Give me some basic code about HTML

qa-featured

Hi,

For your kind information there are many codes in HTML language. You can learn it and use it to make your site. There are some basic codes for you.

<!DOCTYPE>,<a>,<abbr>,<acronym>,<address>,<applet>,<area>,<b>,<base>,<basefont>,<bdo>,<big>,
<blockquote>,<body>,<br>,<button>,<craption>,<center>,<cite>,<code>,<col>,<colgroup>,<dd>,<del>
<dfn>,<dir>,<div>,<dl>,<dt>,<em>.

There are more code in css.

You can more from following link

https://www.w3schools.com/

http://www.tizag.com/

Hopefully you will enjoy.

Thanks

Best Answer
Best Answer
Answered By 0 points N/A #163241

Give me some basic code about HTML

qa-featured

 

Good day,
 
There are hundreds of HTML codes that you can use. You need to have a notebook or something to familiarize with the codes. Below are examples of HTML code that you can use.
 
<h1> heading </h1> – This is for headings and you can use it upto </h6>
<body> body </body>
<p> paragraph> </p>
<b> – for bold text
<i> – for italics
<address> – can be used for the contact information of the owner of the document.
<dfn> to define a word
<blockquote> – used for quoting a phrase from a different source.
<a> – hyperlink
<html>
 
There are also several websites that you can visit that can help you with the codes. You make click the links below for more codes.
 
 
 
Have fun!
Answered By 590495 points N/A #163242

Give me some basic code about HTML

qa-featured

If you are a beginner in web designing and you want some HTML tags that you can use, here are some HTML5 tags. If you want to create a website today, it should be HTML5 compliant. Also note that there are HTML tags before that are no longer compatible with HTML5.

  • <!–…–> – this HTML5 tag is used to insert a comment in the source code. When you insert a comment, it is not displayed in the browser. To use it, simply replace the “…” with your comment. For example: <!–JavaScript start–>.
  • <!DOCTYPE> – this defines the document type. This is not actually an HTML tag but an instruction to the web browser regarding the HTML version the page is written in. It should be the very first item in your HTML document before the <html> tag. It should appear like this: <!DOCTYPE html>.
  • <a> – this tag is used to define a hyperlink or simply a link. The most important attribute used together with the <a> tag is href. In HTML5, the following attributes are not compatible with <a> tag: charset, coords, name, rev, shape. Example of <a> tag: <a href=”https://www.techyv.com/”>TechyV</a>.
  • <abbr> – this is used to define an acronym or an abbreviation. For example: <abbr title=”World Wide Web Consortium”>W3C</abbr>.

The following HTML tags are not supported in HTML5: <acronym>, <applet>, <basefont>, <big>, <center>, <dir>, <font>, <frame>, <frameset>, and more.

Related Questions