Skip to main content

Posts

Showing posts from October, 2017

CCS Syntax

A CSS comprises of style rule that are interprented by the browser and then applied to the corresponding element in your document. A style rule is made of three parts :  Selector - A selector is an HTML tag at which a style will be applied. This cloud be any tag like <h1> or <table> etc.  Property - A property is a type of attribute of HTML tag. Put simple, all HTML attributes are converted into CSS propeties. They cloud be color, border etc. Value - Values are assigned to propeties. For Example, color property can have value either red or #F1F1F1 etc.  You can put CSS style rule syntax as follows - Syntax Selector { property : value } Here table is a selector and border is a property and given value 1px solid #C00 is the value of that property.           

CSS Introduction tutorial

What is CSS ? CSS stands for Cascading Style Sheets. CSS is an extension basic HTML that allows you to style your web pages. CSS describes how HTML elements are to be displayed on screen, on paper, or in other media. CSS saves a alot of work. It can control the layout of multiple Web pages all at once. External Style Sheets are stored in CSS files. History of CSS CSS was invited by Hakon Wium Lie on October 10, 1994 and maintained through a group of people within the W3C called the CSS Working Group. CSS Version  Cascading STyle Sheets, level 1 (CSS1) was came out of W3C as a recommendation in December 1996. This version describes the CSS language as well as a simple visual formatting model for all the HTML tags. CSS2 was became a W3C recommendation in may 1998 and builds on CSS1. This version adds support for media-specific style sheets e.g. printers and aural devices, downloadable fonts, element positioning and tables. CSS3 was became a W3C recommendation in june 19

HTML Marquees

The <marquee> Tag Syntax An HTML marquee is a scrolling piece of text displayed either horizontally across or vertically down your webpage depending on the settings. This is created by using HTML <marquees> tag. Syntax :   <marquee attribute_name ="attribute_value"...more attributes>         One or more lines or text message or image  </marquee> Output :   One or more lines or text message or image    The <marquee> Tag Attributes   Following  is the list of important attributes which can be used with <marquee> tag.     Attribute Description Width This specifies the width of the marquee. This can be a value like 10 or 20% etc. Height This specifies the height of the marquee. This can be a value like 10 or 20% etc. Direction This specifies the direction in which marquee should scroll. This can be a value like up, down, left or right. Behavior

HTML Comments tags

Comment is a piece of code which is ignored by any web browser. It is a good practice to add comments into your HTML code, especially in complex documents, to indicate sections of a document, and any other notes to anyone looking at the code. Comments help you and other understand your code and increases code readabillity. HTML comments are placed in between <!--..--> tags. So any content placed with-in <!--..--> tags will be treated as comment and will be complately ignored by the browser. Example of comment : <!DOCTYPE html> < html>         < head>                 < title> This is document title </title>         </head>         < body>                   < !-- I am single comment -->                 < !--                 This is a multiline comment and it can span through as many as lines you like.-->                 <p> Document content goes here..... </p>          </body>

HTML Basics

HTML Tags, Attributes & Element Tags : HTML tags are keyword (tag names) surround by angle brackets : <tagname>content</tagname> HTML tags normally come in pairs like <p> and </p> The first tag in a pair is the start tag; the second tag is the end tag The end tag is written like the start tag, but with a slash before the tag name. Attributes : Tags can also haveattributes, which are extra bits of information. Attributes appear inside the opening tag and their values sit inside qoutation marks. They look somthing like : <tag attribute = "value" > Margarine </tag>   Element :  Element are the bits that make up web pages. Example : <body> The quick brown fox jumps over the 1 azy dog. </body>   everything that is in between (and includes) <body> and </body> tags is the body element. Example 2 :   <tittle> Rumple stiltskin </tittle> "<tttle>" and "&

HTML Hyper Text Markup Language

What is HTML ? HTML is a markup language for describing web document (web page). ·          HTML stands for Hyper Text Markup Language. HTML adds “markup” to Stadard English text. “Hyper Text” refers to links – hyperlinks – that connect Web pages to one another. ·          A markup language is a set of markup tags. ·          HTML document are described by HTML tags. ·          Each HTML tag describes different document content. ·          HTML is not case sensitive. History of HTML HTML is an evolving language. it doesn't staythe same for long before a resived set of stantards and specifications are brought in to allow easier creation of prettier and ore efficient sites. HTML 1.0 The Hyper Text Markup Language was the brainchild of Sir Tim berners-lee. in 1991 he wrote a document called "HTML Tags" in which he proposed fewer than two dozen elements that could be used for writing web pages. HTML 2.0 HTML 2.0 included everyt

Assembly x86 Microprocessors

8086/8087 (1978) The 8086 was the original x86 microprocessor, with the 8087 as its floating-point coprocessor. The 8086 was Intel's first 16-bit microprocessor with a 20-bit address but, thus enabling to address up to 1 megabytes, although there was a limit of 640 kilobytes of RAM. this limitation is still presend in modern CPUs, since they all support the backward-compatible "Real mode" and boot into it. 8088 (1979) After the development of the 8086, Intel also created the lower-cost 8088. The 8088 was similar to the 8086m but with an 8-bit data bus instead of a 16-bit bus. the address but was left untouched. 80186/80187 (1982) The 186 was the second Intel chip in the family the 80187 was its floating point coprocessor. Except for the addition of some new instructions, optimization of some old ones, and an increase in the clock speed, this processor was identical to the 8086. 80286/80287 (1982) The 286 was the third model in the family; the 80287 wa