Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Monday, 18 April 2016

Learn About HTML Colors

Color Values 

Colors are defined using a hexadecimal notation for the combination of
 red, green, and blue color values (RGB).
The lowest value that can be given to one light source is 0 (hex #00). The highest value is 255 (hex #FF). This table shows the result of combining red, green, and blue:
Color Color HEX Color RGB  #000000  rgb(0,0,0)    #FF0000  rgb(255,0,0)     #00FF00 rgb(0,255,0)    #0000FF  rgb(0,0,255)     #FFFF00  rgb(255,255,0)    #00FFFF  rgb(0,255,255)     #FF00FF  rgb(255,0,255)     #C0C0C0 rgb(192,192,192)    #FFFFFF  rgb(255,255,255)
Color Names A collection of color names is supported by most browsers. To view a table of color names that are supported by most browsers visit this web page:
http://profdevtrain.austincc.edu/html/color_names.htm
Note: Only 16 color names are supported by the W3C HTML 4.0 standard (aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow). For all other colors you should use the Color HEX value. 
Color Color HEX Color Name  #F0F8FF AliceBlue   #FAEBD7  AntiqueWhite     #7FFFD4  Aquamarine     #000000  Black     #0000FF Blue     #8A2BE2  BlueViolet     #A52A2A  Brown
Web Safe Colors A few years ago, when most computers supported only 256 different colors, a list of 216 Web Safe Colors was suggested as a Web standard. The reason for this was that the Microsoft and Mac operating system used 40 different "reserved" fixed system colors (about 20 each). This 216 cross platform web safe color palette was originally created to ensure that all computers would display all colors correctly when running a 256 color palette. To view the 216 Cross Platform Colors visit this web page: http://profdevtrain.austincc.edu/html/216.html  
16 Million Different Colors The combination of Red, Green and Blue values from 0 to 255 gives a total of more than 16 million different colors to play with (256 x 256 x 256). Most modern monitors are capable of displaying at least 16,384 different colors. To assist you in using color schemes, check out http://wellstyled.com/tools/colorscheme2/index-en.html. This site lets you test different color schemes for page backgrounds, text and links.

What Are Basic Html Tags?

Basic HTML Tags 

The most important tags in HTML are tags that define headings, paragraphs and line breaks.
Basic HTML Tags Tag Description <html> Defines an HTML document  <body> Defines the document's body <h1> to <h6> Defines header 1 to header 6 <p> Defines a paragraph  <br> Inserts a single line break  <hr> Defines a horizontal rule <!--> Defines a comment   Headings Headings are defined with the <h1> to <h6> tags. <h1> defines the largest heading while <h6> defines the smallest.
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<h4>This is a heading</h4>
<h5>This is a heading</h5>
<h6> This is a heading</h6>
HTML automatically adds an extra blank line before and after a heading. A useful heading attribute is align.
<h5 align="left">I can align headings </h5>
<h5 align="center">This is a centered heading </h5>
<h5 align="right">This is a heading aligned to the right </h5> 

Tuesday, 9 February 2016

What Is HTML?

HTML

First developed by means of Tim Berners-Lee in 1990,HTML is brief for HyperText Markup Language. HTML is used to create electronic documents (referred to as pages) which can be displayed on the World huge net. Every web page contains a sequence of connections to different pages calledhyperlinks. Every web web page you see on the web is written utilising one version of HTML code or an extra.
HTML code ensures the appropriate formatting of text and images so that your internet browsermay show them as they're intended to seem. Without HTML, a browser would no longer recognize tips on how to display textual content as factors or load pictures or other elements. HTML additionally supplies a general structure of the page, upon which Cascading style Sheets are overlaid to alter its appearance. One would feel of HTML because the bones (structure) of an online page, and CSS as its skin (look).

What does an HTML tag look like?

As visible above in the above example of an HTML tag there will not be many add-ons. Just about all HTML tags have an opening tag that contains the title with any attributesand an in depth tag that contains a forward scale down and the identify of the tag that's being closed. For tags that shouldn't have a closing tag just like the <img> tag, it is exceptional follow to finish the tag with a ahead scale down.
every tag is contained inside a not up to and better than perspective brackets and the whole thing between the outlet and closing tag is displayed or suffering from the tag. Within the above illustration the <a> tag is making a link referred to as "laptop Hope" that's pointing to the hope.Html file.

What does HTML appear like?

the following is an instance of a common internet page written in HTML as good as an outline of each section and its perform.
<!DOCType HTML PUBLIC "-//W3C//DTD HTML four.01 Transitional//EN" "http://www.W3.Org/TR/html4/unfastened.Dtd">
<html lang="en"><head>
<title>example web page</title>
<meta http-equiv="content material-variety" content material="textual content/html; charset=home windows-1252">
</head>
<physique>
<h1>this is a heading</h1>
<p>that is an example of a basic HTML web page.</p>
</physique></html>
The field above contains the key ingredients to a basic net web page. The first line (DOCType) describes what variant of HTML the page was written in so that an internet browser can interpret the textual content that follows. Subsequent, the HTML opening tag lets the browser recognize that it is studying HTML code. The HTML tag is adopted by using the headsection which comprises know-how concerning the web page corresponding to its title, meta tags, and where to find the CSS file. The body section is all content that is viewable on the browser. For example, the entire textual content you see here is contained within the physique tags. Sooner or later, closing tags wrap each and every aspect for suitable syntax.

what's HTML5?

HTML5 is the replace made to HTML from HTML4 (XHTML follows one more variant numbering scheme). It makes use of the same general ideas as HTML4, but adds some new tags and attributes which allow for higher semantics and for dynamic factors that are activated utilizing JavaScript. New factors incorporate part, <article>, <apart>,<audio>, <bdi>, <canvas>, <datalist>, <important points>, <embed>, <figure>,<figcaption>, <footer><header><keygen><mark><meter><nav><output>,<progress><rp><rt><ruby><time><track><video>, and <wbr>. There are additionally new enter forms for types, which comprise tel, search, url, email, datetime, date, month, week, time, datetime-nearby, quantity, range, and colour.
With the increasing action to hold constitution and type separate, a quantity of styling factors have been eliminated along with those that had accessibility issues or noticed very little use. These following elements must no longer be used in HTML code:<acronym><applet><basefont><colossal><center><dir><font><body>,<frameset><noframes><strike>, and <tt>. HTML5 also simplifies the doctype announcement to the tag within the following box.
<!DOCType html>

Most Trending

Categories

2016. Powered by Blogger.

Contact us

Name

Email *

Message *