Friday, 6 January 2023

HTML editor

 HTML EDITORS :

WRITE HTML CODE USING NOTEPAD OR TEXTEDIT:

To learn html I recommended a simple text editor like Notepad(pc) or Textedit(for mac users).

I believe that using a simple text editor is a good to learn HTML code.


HOW TO USE EDITORS:

WINDOWS 8 OR LATER:

Open the start screen (the window symbol at the bottom left on your screen). Type notepad.

windows7 or earlier OS:

Open start >programs>accessories>notepad.

Step 1: Open TextEdit (Mac)

Open Finder > Applications > TextEdit

Also change some preferences to get the application to save files correctly. In Preferences > Format > choose "Plain Text"

Then under "Open and Save", check the box that says "Display HTML files as HTML code instead of formatted text".

Then open a new document to place the code.


Step 2: Write Some HTML

Write or copy the following HTML code into Notepad:

Notepad

Step 3: Save the HTML Page

Save the file on your computer. Select File > Save as in the Notepad menu.

Name the file "index.htm" and set the encoding to UTF-8 (which is the preferred encoding for HTML files).

View in Browser

Tip: You can use either .htm or .html as file extension. There is no difference; it is up to you.


Step 4: View the HTML Page in Your Browser

Open the saved HTML file in your favorite browser (double click on the file, or right-click - and choose "Open with").

The result will look much like this:

View in Browser

Thursday, 5 January 2023

JAVASCRIPT

 JAVASCRIPT


CSS

 CSS

HTML

                             full stack developer home 

HTML:

❤HTML stands for Hyper Text Markup Language.

❤It is a standard markup language for web pages.

❤With html you can create your own website.

The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in web browser. It can be assisted by technologies such as CSS and scripting technologies such as javascript.

What is HTML:

  • HTML describes about structure of a Web page.
  • HTML consists of a series of elements in web page.
  • HTML elements shows the browser how to display the content in the website.
  • HTML elements label or shows pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

A Simple HTML Document


EXPLINATION:
πŸŽ”The <!DOCTYPE html> declaration says that this document is an HTML5 document
πŸŽ”The <html> element is the root element of an HTML page
πŸŽ”The <head> element contains meta information about HTML page
πŸŽ”The <title> element specifies a title for the HTML page that is the browser link.
πŸŽ”The <body> element defines the document's body, and is a container for all the    visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists,    etc.
πŸŽ”The <h1> element defines heading
πŸŽ”The <p> element defines paragraph in html code


Basic HTML page Structure:

<html>

    <head>
          <title>Page Title</title>
    </head>

    <body>
          <h1>this is first heading</h1>
          <h2>this is second heading</h2>
          <p>This is first paragraph</p>
    </body>

</html>.

More topics on html

1. html editor- used to write html code.

Full Stack Developer


full stack developer

THIS BLOG HELPS YOU TO BECOME FULL STACK DEVELOPER.

This page is developed for beginners and professionals. In this blog we are used to cover all topics used to become a full stack developer. Every topic is given in step-by-sept that you can understand in very easy way.

In this blog firstly we will understand what are front-end and back-end and what are the programming languages we need to learn with frameworks.


Front End programming and languages and frameworks:

1.HTML 

2.CSS (Bootstrap, Tailwind CSS, Bulma, Skeleton)

3.Javascript(Angularjs, vue.js, react.js)

And we also use some basic libraries in front-end like jqueryUI, jquery Mobile, Jquery plugins.

Front End programming and languages and frameworks:

1.Node.js(nodejs framework is Express)

2.Python(Framework-Django, Flask)

3.Ruby(Framework-Ruby on rails)

4.Java(Framework-Spring)

5.C#(Framework- .NET)

6.PHP(Framework-Laravel)  is a server-side scripting language.

HTML editor

 HTML EDITORS : WRITE HTML CODE USING NOTEPAD OR TEXTEDIT: To learn html I recommended a simple text editor like Notepad(pc) or Textedit(for...