HI, I’M Aryan

I am next Front-End Web Developer

About Me

I'm a Student

Hi, i am Aryan Mollick. I live at Bhatar Bazar, Purba Bardhaman West Bengal. Right now I am styding in class xi at Bhatar Madhab Public High School. Since childhood, I have a great interest in technology.This interest has driven me to learn about technology. I learnt myself coding, programming, website development( although i am learning), Photo and Video editing and lots of things.

I created this blog with my brother to upload what i have learnt and created. Hope you like it.

Aryan Web Developer

My Services

WHAT I CAN DO

Web designing

Graphic Designing

Content Writing

Integer hendrerit erat sed tellus pretium, eu sodales eros dignissim. Duis augue eros, mollis ac velit at, rutrum tincidunt ipsum. Morbi semper dui id fringilla semper. Etiam vulputate sagittis vestibulum. Vivamus ac ante cursus, feugiat ipsum et, aliquet justo. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iusto, minima soluta numquam perferendis illum alias omnis commodi error veritatis a esse nostrum asperiores recusandae.
  • Graphics 90%
  • HTML5 CSS3 75%
  • WordPress 66%
  • Blogger 88%

My Blog

WHY YOU SHOULD LEARN HTML?।। HTML TUTORIAL ( Part-1)

WHY YOU SHOULD LEARN HTML?।। HTML TUTORIAL ( Part-1) 



It is possible to create a webpage without knowing anything about the HTML source behind the page.

There are excellent editors on the market who will take care of the HTML parts. You only have to page layout.

However, if you want to make it above the average in web design, it is strongly recommended that you understand these tags.

The most important benefits are:
WHY YOU SHOULD LEARN HTML? HTML,How to learn html,
WHY YOU SHOULD LEARN HTML?


2) You can use the tag editor does not support.


1) You can read the codes of other people's pages, and "lend" good effects.


3) You can work yourself when the editor simply refuses to make the desired effect.

4) You can handwrite your HTML with any available text editor, which includes Notepad which comes as a standard program with Windows.

All you have to do is type in the code, then save the document, make sure to enter the .html extension or .htm extension in the file (for example "mypage.html").
What is css? advantages and disadvantages

CSS-

Cascading Style Sheets, known as CSS, is a simple design language designed to simplify the process of submitting web pages.

CSS looks at and looks at the portion of a web page. Using CSS, how do you use text color, the style of fonts, the distance between paragraphs, the size and maintenance of the columns, the use of background images or colors, layout design, display of various devices and screen sizes Variations can be controlled as well as many other effects.

CSS is easy to learn and understand but it provides powerful control over the presentation of an HTML document. Typically, CSS is combined with markup language HTML or XHTML..

What is css? advantages and disadvantages, css
CSS


Advantages of CSS



1. CSS saves time - you can write CSS once and you can reuse the same sheet in multiple HTML pages. You can define the style for each HTML element and apply it to as many web pages as you want.

2. Pages load faster - if you are using CSS, you do not need to write HTML tag attributes every time. Simply write a CSS rule of one tag and apply it to all events of that tag. So low code means fast download time.

3. Easy maintenance - To make global changes, just change the style, and all elements of all web pages will be automatically updated.


4. Superior styles for HTML - CSS has a wide range of features compared to HTML so you can look much better on your HTML page than HTML attributes.



   Disadvantages of CSS


1. The style information is not the distance from the content (the main goal of SGML / HTML). Styles cannot be controlled together for many documents. The document can not create or control sections of elements to control many element types within the document. Selector grouping methods can not be used to create complex element addressing scenarios
  
2. This method can not control styles for multiple documents      at once Inline Styles






HTML - Elements।। ( part- 3)

HTML - Elements

HTML - Elements, HTML Tutorial
HTML - Elements
An HTML element is defined by an initial tag. If the element contains other content, then it ends with a closing tag, where the element name comes before the next slash, as shown below with some tags -


Start TagContentEnd Tag
<p>This is paragraph content.</p>
<h1>This is heading content.</h1>
<div>This is division content.</div>
<br />
So here <p> .... </ p> is an HTML element, <h1> ... </ h1> is another HTML element. There are some HTML elements that do not need to be closed, like <img ... />, <hr /> and <br /> element. These are known as zero elements.


HTML documents contain one of these elements and they specify how HTML documents should be constructed, and in which part of the HTML document should be kept.


Example

 Live Demo
<!DOCTYPE html>
<html>

   <head>
      <title>Nested Elements Example</title>
   </head>
 
   <body>
      <h1>This is <i>italic</i> heading</h1>
      <p>This is <u>underlined</u> paragraph</p>
   </body>
 
</html>






















HOW TO MAKE SIMPLE WEB PAGE ON HTML।। HTML( PART- 4 )

SIMPLE WEB 

PAGE:-

HOW TO MAKE SIMPLE WEB PAGE ON HTML।। HTML( PART- 4 )
the tag you read in the next lesson, in this lesson, we make a simple web page by which the tag is started from where and where it is terminated.



Example 1: -



<html>
       <head>
   
       <title>Your Page Title</title>
      </head>
  <body>
           <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>
           <p>This is a paragraph.</p>
    </body>
 </html>

First, copy the code written above, then paste it on your Text - Editor like Notepad ++, then name Index.html and save it on your computer. Then double-click index.html on your web browsers like Google Chrome or Mozilla Firefox or Internet Explorer.

Now let me explain the code written in example 1 above: -

You can see that the first <html> has been written in the code and then the last one at the end of the code </ html> has been closed because the start of any HTML page starts with <html> tag and end it Also happens </ html> tag.

We can divide the written code into two parts first <head> </ head> and another <body> </ body>

Within the headline of <head> </ head>, the title of the website is written. Besides, much other important information is written within the head, but I do not want to mislead you by telling them about them so that I Then you will tell when you will have basic knowledge of HTML.

<body> </ body> where the head tag is closed (</ head>) from there <body> starts and before the html page ends </ html> before us </ body > Has to be closed and all the things we see in any website, we all have to write inside the <body> </ body> tag.








HTML Tags।। HTML TUTORIAL ( Part-2)

HTML Tags।। HTML TUTORIAL   ( Part-2)-


There are three main parts to the HTML tag: opening tags, content and closing tags. But there are some HTML tags unlock tags.

When a web browser reads an HTML document, the browser reads it from top to bottom and from left to right. HTML tags are used to create HTML documents and present their properties. Each HTML tag has different properties.

HTML Tags।। HTML TUTORIAL , HTML Tags
HTML Tags

DOCTYPE, title, link, meta, and style


HTML Text Tags


<p>, <h1>, <h2>, <h3>, <h4>, <h5>, <h6>, <strong>, <em>, <abbr>, <acronym>,<address>,<bdo><blockquote>, <cite>, <q>, <code>, <ins>, <del>, <dfn>, <kbd>, <pre>, <samp>, <var> and <br>


HTML Link Tags


<a> and <base>


HTML Image and Object Tags


<img>, <area>, <map>, <param> and <object>



HTML List Tags

<ul>, <ol>, <li>, <dl>, <dt> and <dd>


HTML Table Tags

table, tr, td, th, tbody, thead, tfoot, col, colgroup, and caption



HTML Form Tags



form, input, textarea, select, option, optgroup, button, label, fieldset and legend
 What is html language? advantages and disadvantages.
 what is html language? advantages and disadvantages।।
HTML


HTML is a short form of HyperText Markup Language. This is a major markup language for web pages. This is a tool to determine the structure of text-based information in any document. For this, the text notes specials as links, headings, paragraphs, lists, and adds interactive forms, attached images, and other objects to it. Written in the form of HTML tags which are surrounded by the angle bracket ("<" and ">"). HTML can also determine the visual form of a document to some extent and it can also be attached to scripting language codes such as JavaScript, PHP, etc.

HTML is used to prepare the framework of a website and this is the only language that allows all websites to run. 



Advantages of HTML:

1. The first advantage is widely used.
2. Every browser supports HTML language.
3. Easy to learn and use.
4. It is by default in every window so you don't need to purchase extra software.

Disadvantages of HTML:

1. It can create only static and plain pages so if we need dynamic pages then  HTML
is not useful.
2. Need to write a lot of code for making a simple webpage.
3. Security features are not good in HTML.
4. If we need to write a long code for making a webpage then it produces some complexity.


Read more: Html introduction


https://www.gunjanlyrics.com/

Contact Me

Get in touch