Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: Html Note
Description: Here's some Notes for HTML You can Read this for a "BETTER FUTURE"

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


To create websites from start to finish
...
You just need to invest
your time in this video, as there are no prerequisites
...

What is HTML?
HTML stands for Hypertext Markup Language, and it is the language used to create websites
...
With an understanding of these tags and how
to put them together, we can create beautiful websites easily
...
It is just a bare bone page structure,
without any design or style
...
Let me
show you an example:


Hello World!


This is an example without CSS
...
CSS is used to handle the design
and visual style of the web page
...

JavaScript is often used in conjunction with HTML and CSS to create dynamic websites
...
In this course, we will learn how to use JavaScript to achieve all
these things
...
On the
other hand, JavaScript is used for the frontend logic, which means the logic that users can see
...

Client Side Logic
JavaScript is a type of client-side logic, which means users can see its logic
...
For example, if a website is using Django, users
will not be able to see its backend logic, but only its frontend logic
...
To start with, we will view the source
code of a website by clicking the right button and selecting "view page source
...
However, keep in mind that the website may not look
exactly the same as the original website since some styles may be used through server roots
...
Now I want
to tell you a few things
...
You can create a new
file by clicking here and create a folder by clicking here
...
VSCode is the lightweight open source text editor of our choice
...
We'll show
you how VSCode facilitates in great web development
...
To change the font size, you have to press a lot of keys
...
Every website is made up of HTML and we
start building a website by creating a file named index
...
This is the point from where your
website starts to be visible
...
Let's move to chapter1 where we'll create our first website
...
We want to open that in a live server because we
want to see how our page will look in our server
...
html" in my URL bar, I'll
still get the same page, but if my page wasn't named "index
...

The head of an HTML page is the metadata of the page
...
Meta set means the encoding of this page is "utf8" and view port is used to change the
initial scale
...
A tag is the container for the
content or for the more HTML tags
...

Your HTML document is nothing more than this it is just a piece of code whatever website you
see on your daily basis just like if you're seeing my website
...
When your browser receives this HTML document, it converts the code into a
viewable form
...
The tag
is the parent of the and tags
...
htm or
...
Live Server may not detect your index
...

Google Chrome's Inspect feature allows you to inspect any element on a website
...
" Similarly, you can change "Contact Me" to "Contact Shubham
...

The Most Used Devices for Internet
Phones and tablets, as well as other pocket devices, are the most commonly used devices for
internet access
...


HTML Elements
HTML elements are made up of a start tag, content, and an end tag
...

Responsiveness with CSS and JS
CSS and JS are used to create the responsiveness of a webpage
...

HTML Comments
HTML comments are used to mark text that should not be parsed
...

Parsing with Google Chrome
Google Chrome reads the HTML code and displays the webpage to the user
...
The browser will obey any instructions in the code, including comments
...
To
comment and uncomment, you can use Ctrl + /
...
This simple
exercise will test your HTML skills
...

If you want to go to my contact page, click on /contact me
...

Unfortunately, Wikipedia is unable to find the related links that are related to wikipedia
...

Instead, it is trying to find those pages on 127
...
0:5500
...

We can add elements inside the body tag to define the page layout
...
In chapter 2, we will learn about some basic tags and
use those tags to create some websites
...
The attributes
are the HTML attributes
...
If you write
text which is in an anchor tag, it is asking for the location of the location


Title: Html Note
Description: Here's some Notes for HTML You can Read this for a "BETTER FUTURE"