Posts

CSS : What is CSS, Types of CSS, How we apply CSS in a website, Inline CSS, Internal CSS, External CSS, with pdf notes on CSS

Image
Cascading Style  Sheet (CSS) CSS stands for cascading style sheet. It helps us to make webpage beautiful. In normal words we can say CSS is a beauty parlor of any simple HTML page. Let's see with an example: These are two welcome notes for my website. First one have only HTML but in second we applied CSS to beautify it. You can easily notice a border and background colors in the second one. I hope its clear to you that CSS is came into picture just to beautify a simple webpage. Types of CSS: On the basis of how they are applied to a website we have three types of CSS: Inline CSS Internal CSS External CSS How we apply CSS in a website: Let's see a brief view on all three types of CSS in short and if you wanna understand them clearly kindly visit them by clicking on link above   Inline CSS :                               ...

Paragraph in Html

Image
 Paragraph HTML is an markup language to create a webpage. In webpages we also need paragraphs. You all are familiar with word paragraph. To create a paragraph we use <p>..........</p> tag. Syntax: <html> <body> <p> This is an example paragraph </p> </body> </html>   Attributes of <p> tag We can use all inline css attributes in paragraph tag to decorate and also id & class to target in CSS file or in internal CSS.  Don't worry if you are getting trouble in understanding what are Inline CSS, Internal CSS, or CSS file, we will study them in very easy language and in deep soon. Let's first see a syntax with id & classes <html> <body> <p id="firstpara" class="firstpara"> This is an example paragraph </p> </body> </html>  Here what we did we just given an id and an class to target specific paragraph in Cascading Style Sheet(CSS) Click here to learn about CSS Click he...

Heading in HTML

Image
 Heading in HTML In the web page you are reading this HTML lesson you can see Heading clearly, and I hope you know well what is heading. Heading is something written on top of every topic, it tell us what we are going towrite inside the page or in the topic. In HTML we are having 6 different levels of headings ranging from <h1> to <h6> <h1> This is level 1 Heading <h1> <h2> This is level 2 Heading <h2> <h3> This is level 3 Heading <h3> <h4> This is level 4 Heading <h4> <h5> This is level 5 Heading <h5> <h6> This is level 6 Heading <h6>  By looking at above example you might have understood all six levels of headings    GET COMPLETE HTML COURSE FOR FREE  

Case Sensitivity

Image
 Case Sensitivity What is Case Sensitive? Before knowing case sensitivity lets firstly know what is case.  ABCDEFGH........... these alphabets are written in Upper Case( Capital letters are termed as Upper case). Similar to those abcdef......... are Lower Case alphabets (small letters are known as lower case). Now any language which is sensitive about cases (upper case & lower case) are known as case sensitive language. If a language is case sensitive then, for that language BOOKS & books  are two different things. "CURRENTLY YOU ARE ON TECHNICALVINAYAK.BLOGSPOT.COM" (This line is written in upper case) "currently you are on technicalvinayak.blogspot.com" (This line is written in lower case) "Currently You ARe ON technicalVINayak.blogspot.com" (This line is niether in upper case nor in lower case but a case sensitive language treat it as a different thing. And for html or any other non case sensitive language all three are same) How case sen...

HTML Tags

Image
 Html Tags In basics of HTML we studied a brief about Tags, if you did not read that, no problem, I'm gonna tell you the same thing here too and then explain them all. HTML tags are like keywords which defines that how web browser will format and display the content. With the help of tags, a web browser can distinguish between an HTML content and a simple content. HTML tags contain three main parts: opening tag, content and closing tag. But some HTML tags are unclosed tags. When a web browser reads an HTML document, browser reads it from top to bottom and left to right. HTML tags are used to create HTML documents and render their properties. Each HTML tags have different properties. An HTML file must have some essential tags so that web browser can differentiate between a simple text and HTML text. You can use as many tags you want as per your code requirement.   All HTML tags must enclosed within < > these brackets. Every tag in HTML perform different tasks. ...

HTML Basics

Image
 Basic Tags & Elements used in HTML To built a huge building what we need to put some small small bricks, stones and concrete. In similar way to write any program we need to know basics of those programs. In this page we are gonna study about all the basic things in a html webpage in very simple manner. Let's enjoy!  Tags HTML tags are like keywords which defines that how web browser will format and display the content. With the help of tags, a web browser can distinguish between an HTML content and a simple content. HTML tags contain three main parts: opening tag, content and closing tag. But some HTML tags are unclosed tags. When a web browser reads an HTML document, browser reads it from top to bottom and left to right. HTML tags are used to create HTML documents and render their properties. Each HTML tags have different properties. An HTML file must have some essential tags so that web browser can differentiate between a simple text and HTML text. You can use a...

HTML Home

Image
Home  Created this page just to give reference for everything in html. Introduction Basics Tags   elements Artributes Heading   Paragraph   Style 1.To be uploaded.......... 0 C0omment Classes Id Color Links Image Table Form List Blocks & Inlines Iframe Layout Other things I'll add soon

Introduction to HTML

Image
 HTML HTML stands for hypertext markup language, it was invented in blah blah date by xyz person. Yes It seems to be something odd, because you guys are being used to study history of everything, if If you seriously want to read history, I'll create some other module for you.  Here we will only learn the programs, their uses and execution. What is use of html Simple html is used to create a simple webpage. We use CSS, JS, BootStrap,etc to make it beautiful and attractive. We will discuss these things in further topics. For now just understand HTML is used to create a webpage.  Syntax for HTML <!DOCTYPE HTML>  <html>  <head>       <title>Example page</title>  </head>  <body>       <h1>This is a heading</h1>            <p>This is an <b>example</b> of a basic HTML page.</p> </body> </html> ...

MacOS vs Windows : Complete review

Image
MacOS Windows (Complete Review) Similar as we always wonder in Android and ios, in computers' world we always wonder whether to buy a Mac or a PC.  It is most comman question always comes in our mind : Which one is better? Some says Mac some says Windows. Of course both are good in their field but if you are going to buy a laptop you must read this blog till the end. Main difference between Mac & Windows The main different between Mac & Windows is their hardware and operating. The hardware, or the physical components of the system, has become closer to parity over the past few years, taking advantage of all the advances in technology. However Apple manufacturers its own laptop for MacOS on the other hand Microsoft sells Windows to different computer companies like lenovo, dell, hp, etc. The moto of telling you this, is Apple has its all control over software to hardware in Macbooks but in PCs Microsoft don't and this is how it is easier for Apple to impose their new le...

Lecture 14 : Dynamic memory allocation, dynamic array, file, file operation, file operation on string

Image
Lecture - 14 Dynamic memory allocation , dynamic array, file, file operation, file operation on string Dynamic memory Allocation  The process of allocating memory at the time of execution or at the runtime, is called dynamic memory location . Two types of problem may occur in static memory allocation.  If number of values to be stored is less than the size of memory, there would be wastage of memory. If we would want to store more values by increase in size during the execution on assigned size then it fails. Allocation and release of memory space can be done with the help of some library function called dynamic memory allocation function. These library function are called as dynamic memory allocation function. These library function prototype are found in the header file, “alloc.h” where it has defined. Function take memory from memory area is called heap and release when not required. Pointer has important role in the dynamic memory allocation to allocate memory. malloc():...