SlideShare una empresa de Scribd logo
1 de 38
Descargar para leer sin conexión
Agenda
HTML
CSS
INTRO TO JAVASCRIPT
PORTFOLIO
HTML
HTML stands for HyperText
Markup Language.
It is used to design web pages
using a markup language. HTML is
the combination of Hypertext and
Markup language.
Hypertext defines the link between
web pages. A markup language is
used to define the text document
within the tag which defines the
structure of web pages.
The language uses tags to define
what manipulation has to be done
on the text.
Basic HTML structure
Tags
Headings
An HTML heading tag is used to define the
headings of a page.
There are six levels of headings defined by
HTML.
These 6 heading elements are h1, h2, h3, h4,
h5, and h6; with h1 being the highest level
and h6 being the least.
Paragraph
The <p> tag in HTML defines a paragraph. These have both
opening and closing tags. So anything mentioned within <p> and
</p> is treated as a paragraph.
Lists
A list is a record of short pieces of related information or used to
display the data or any information on web pages in the ordered or
unordered form.
2
1
Ordered lists Unordered lists
The HTML Unordered List: An unordered list starts with the “ul”
tag. Each list item starts with the “li” tag. The list items are
marked with bullets i.e small black circles by default.
HTML Ordered List: An ordered list starts with the “ol” tag.
Links
It is a connection from one web resource to another.
Links are specified in HTML using the “a” tag.
By using the ‘a’ tag, you can link one element of the code to
another element that may/may not be in your code.
An image can be used to create a link to a specified URL. When
the viewer clicks on the link, it redirects them to another page.
img src stands for image source ( i.e URL or file address )
<a href="link address"><img src="image destination"></a>
Table
An HTML table is defined with the “table” tag.
Each table row is defined with the “tr” tag.
A table header is defined with the “th” tag. By default,
table headings are bold and centered.
A table data/cell is defined with the “td” tag.
Div
The div tag is used in HTML to make divisions of content in the web
page. Div tag has both open (<div>) and closing (</div>) tag and it is
mandatory to close the tag.
The Div is the most usable tag in web development because it helps
us to separate out data in the web page and we can create a
particular section for particular data or function in the web pages.
The id attribute is a
unique identifier that is
used to specify the
document.
id attribute class attribute
The class attribute is used to
specify one or more class
names for an HTML element.
The class attribute can be
used on any HTML element.
CSS
CSS (Cascading Style Sheets) is a
stylesheet language used for
describing the look and formatting of a
document written in HTML
(Hypertext Markup Language).
CSS
CSS is used to define the layout, font,
color, and other visual
aspects of a webpage, and it helps to
separate the content of a
webpage from its presentation.
Introduction to Styles
3
2
1
Inline Internal External
Selectors and Properties
Selectors and Properties
FONT PROPERTIES IN CSS
TEXT PROPERTIES IN CSS
BACKGROUND PROPERTIES IN CSS
BORDERS PROPERTIES IN CSS
BOX MODEL PROPERTIES IN CSS
The CSS box model is a structure that encloses
every HTML
element, and is composed of margins, borders,
padding, and the
element's content. This model is utilized to design
and arrange the
layout of web pages.
COLORS PROPERTIES IN CSS
TABLE PROPERTIES IN CSS
ANIMATION PROPERTIES IN CSS
TRANSITION PROPERTIES IN CSS
CSS FLEXBOX
Flexbox is a CSS layout system that makes it easy to align and
distribute items within a container using rows and columns. It
allows items to "flex" and adjust their size to fit the available
space, making responsive design simpler to implement. Flexbox
makes formatting HTML elements more straightforward and
efficient.
The Grid layout is a 2-dimensional system in CSS that allows
for the creation of complex and responsive web design
layouts with consistent results across different browsers. It
makes it easier to build these types of layouts.
CSS GRID
JAVASCRIPT
let name="Devesh"
Variables
Functions
function sayHello()
{
console.log("Hello!");
}
sayHello();
Array
let myArray = [1, 2, 3, 4, 5];
let button = document.querySelector("button");
button.addEventListener("click", function()
{
console.log("Button clicked!");
});
Button
KAHOOT QUIZ
PIN-5973552

Más contenido relacionado

Similar a Web.pdf

Markup language classification, designing static and dynamic
Markup language classification, designing static and dynamicMarkup language classification, designing static and dynamic
Markup language classification, designing static and dynamic
Ankita Bhalla
 
Class Intro / HTML Basics
Class Intro / HTML BasicsClass Intro / HTML Basics
Class Intro / HTML Basics
Shawn Calvert
 
Coding a Website with HTML
Coding a Website with HTMLCoding a Website with HTML
Coding a Website with HTML
wrhsbusiness
 

Similar a Web.pdf (20)

Empowerment Technologies Lecture 10 (Philippines SHS)
Empowerment Technologies Lecture 10 (Philippines SHS)Empowerment Technologies Lecture 10 (Philippines SHS)
Empowerment Technologies Lecture 10 (Philippines SHS)
 
Final by smit parekh
Final  by smit  parekhFinal  by smit  parekh
Final by smit parekh
 
Markup language classification, designing static and dynamic
Markup language classification, designing static and dynamicMarkup language classification, designing static and dynamic
Markup language classification, designing static and dynamic
 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
 
Web day01 MOL.pdf
Web day01 MOL.pdfWeb day01 MOL.pdf
Web day01 MOL.pdf
 
html-basic.pdf
html-basic.pdfhtml-basic.pdf
html-basic.pdf
 
Pptaug7
Pptaug7Pptaug7
Pptaug7
 
Class Intro / HTML Basics
Class Intro / HTML BasicsClass Intro / HTML Basics
Class Intro / HTML Basics
 
HTML - LinkedIn
HTML - LinkedInHTML - LinkedIn
HTML - LinkedIn
 
INTRODUTION TO HTML.pptx
INTRODUTION TO HTML.pptxINTRODUTION TO HTML.pptx
INTRODUTION TO HTML.pptx
 
Higher Computing Science HTML
Higher Computing Science HTMLHigher Computing Science HTML
Higher Computing Science HTML
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
html tags
html tagshtml tags
html tags
 
How to learn HTML in 10 Days
How to learn HTML in 10 DaysHow to learn HTML in 10 Days
How to learn HTML in 10 Days
 
19ESKIT058_5thSem.pptx
19ESKIT058_5thSem.pptx19ESKIT058_5thSem.pptx
19ESKIT058_5thSem.pptx
 
Beginners css tutorial for web designers
Beginners css tutorial for web designersBeginners css tutorial for web designers
Beginners css tutorial for web designers
 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
 
HTML language and all its tags .....
HTML language and all its tags .....HTML language and all its tags .....
HTML language and all its tags .....
 
Coding a Website with HTML
Coding a Website with HTMLCoding a Website with HTML
Coding a Website with HTML
 
Html starting
Html startingHtml starting
Html starting
 

Más de AkankshaPathak42 (11)

Flutter (1).pdf
Flutter (1).pdfFlutter (1).pdf
Flutter (1).pdf
 
API 101 event.pdf
API 101 event.pdfAPI 101 event.pdf
API 101 event.pdf
 
NLP with TensorFlow.pdf
NLP with TensorFlow.pdfNLP with TensorFlow.pdf
NLP with TensorFlow.pdf
 
Hacktober 2022.pptx
Hacktober 2022.pptxHacktober 2022.pptx
Hacktober 2022.pptx
 
Day3.pptx
Day3.pptxDay3.pptx
Day3.pptx
 
Introduction to KOTLIN.pptx
Introduction to KOTLIN.pptxIntroduction to KOTLIN.pptx
Introduction to KOTLIN.pptx
 
Day 2.pptx
Day 2.pptxDay 2.pptx
Day 2.pptx
 
ANDROID info session.pdf
ANDROID info session.pdfANDROID info session.pdf
ANDROID info session.pdf
 
GDSC Mescoe -Info session.pdf
GDSC Mescoe -Info session.pdfGDSC Mescoe -Info session.pdf
GDSC Mescoe -Info session.pdf
 
Getting Started with AI&ML on Azure.pptx
Getting Started with AI&ML on Azure.pptxGetting Started with AI&ML on Azure.pptx
Getting Started with AI&ML on Azure.pptx
 
ML Kit , Cloud FF GDSC MESCOE.pdf
ML Kit , Cloud FF GDSC MESCOE.pdfML Kit , Cloud FF GDSC MESCOE.pdf
ML Kit , Cloud FF GDSC MESCOE.pdf
 

Último

FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Christo Ananth
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Christo Ananth
 

Último (20)

Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELLPVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
PVC VS. FIBERGLASS (FRP) GRAVITY SEWER - UNI BELL
 
Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...Call for Papers - International Journal of Intelligent Systems and Applicatio...
Call for Papers - International Journal of Intelligent Systems and Applicatio...
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
NFPA 5000 2024 standard .
NFPA 5000 2024 standard                                  .NFPA 5000 2024 standard                                  .
NFPA 5000 2024 standard .
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 

Web.pdf

  • 1.
  • 4. HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. HTML is the combination of Hypertext and Markup language. Hypertext defines the link between web pages. A markup language is used to define the text document within the tag which defines the structure of web pages. The language uses tags to define what manipulation has to be done on the text.
  • 7. Headings An HTML heading tag is used to define the headings of a page. There are six levels of headings defined by HTML. These 6 heading elements are h1, h2, h3, h4, h5, and h6; with h1 being the highest level and h6 being the least.
  • 8. Paragraph The <p> tag in HTML defines a paragraph. These have both opening and closing tags. So anything mentioned within <p> and </p> is treated as a paragraph.
  • 9. Lists A list is a record of short pieces of related information or used to display the data or any information on web pages in the ordered or unordered form. 2 1 Ordered lists Unordered lists
  • 10. The HTML Unordered List: An unordered list starts with the “ul” tag. Each list item starts with the “li” tag. The list items are marked with bullets i.e small black circles by default. HTML Ordered List: An ordered list starts with the “ol” tag.
  • 11. Links It is a connection from one web resource to another. Links are specified in HTML using the “a” tag. By using the ‘a’ tag, you can link one element of the code to another element that may/may not be in your code.
  • 12. An image can be used to create a link to a specified URL. When the viewer clicks on the link, it redirects them to another page. img src stands for image source ( i.e URL or file address ) <a href="link address"><img src="image destination"></a>
  • 13. Table An HTML table is defined with the “table” tag. Each table row is defined with the “tr” tag. A table header is defined with the “th” tag. By default, table headings are bold and centered. A table data/cell is defined with the “td” tag.
  • 14. Div The div tag is used in HTML to make divisions of content in the web page. Div tag has both open (<div>) and closing (</div>) tag and it is mandatory to close the tag. The Div is the most usable tag in web development because it helps us to separate out data in the web page and we can create a particular section for particular data or function in the web pages.
  • 15. The id attribute is a unique identifier that is used to specify the document. id attribute class attribute The class attribute is used to specify one or more class names for an HTML element. The class attribute can be used on any HTML element.
  • 16. CSS
  • 17. CSS (Cascading Style Sheets) is a stylesheet language used for describing the look and formatting of a document written in HTML (Hypertext Markup Language). CSS CSS is used to define the layout, font, color, and other visual aspects of a webpage, and it helps to separate the content of a webpage from its presentation.
  • 25. BOX MODEL PROPERTIES IN CSS The CSS box model is a structure that encloses every HTML element, and is composed of margins, borders, padding, and the element's content. This model is utilized to design and arrange the layout of web pages.
  • 26.
  • 31. CSS FLEXBOX Flexbox is a CSS layout system that makes it easy to align and distribute items within a container using rows and columns. It allows items to "flex" and adjust their size to fit the available space, making responsive design simpler to implement. Flexbox makes formatting HTML elements more straightforward and efficient.
  • 32. The Grid layout is a 2-dimensional system in CSS that allows for the creation of complex and responsive web design layouts with consistent results across different browsers. It makes it easier to build these types of layouts. CSS GRID
  • 36. Array let myArray = [1, 2, 3, 4, 5];
  • 37. let button = document.querySelector("button"); button.addEventListener("click", function() { console.log("Button clicked!"); }); Button