尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
SlideShare a Scribd company logo
fu
Basic Introduction to :
HTML & CSS
Presented by –
1. Sanskar Dubey
2. Saurabh Singh
Fundamentals of Computer & Programming
TOPIC -
Presented to –
Mr. Gaurav Dwivedi sir
1
2
Table Of Contents –
• History & Why HTML and CSS
• HTML Introduction
• WEB PAGE
• HTML Basic Tags and Attributes
• CSS Introduction
• INLINE Stylesheets
• INTERNAL Stylesheets
• EXTERNAL Stylesheets
3
A Brief History
and
Some Common Quetions –
• WHY HTML and CSS ?
• Use of it ?
• Hard or easy to learn ?
• How to use ?
• Safe or not ?
• Tim Berners-Lee.
• HTML stands for Hyper Text Markup Language.
• HTML is not a programming language.
• BUT it is a formatting language.
• Used in developing Web Pages
4
• Web Page can be further divided into :-
• Structure-What the different part of content are and how
they are related.
• Presentation-How the content should be displayed and
formatted Visually.
• .
• HTML is used to maintain STRUCTURE of the
document.
• CSS is used to maintain PRESENTATION of the
document.
5
• HTML Tags<>
• HTML tags are keywords (tag names) surrounded by angle
brackets like <html>
• HTML tags normally come in pairs like <b> and </b>
• The first tag in a pair is the start tag, the second tag is the end
tag
• The end tag is written like the start tag, with a forward slash
before the tag name
• Start and end tags are also called opening tags and closing
tags
• HTML Elements
• HTML element is everything between the start tag and the end
tag, including the tags.
• HTML Element: <p>This is a paragraph.</p>
6
Sample Program
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
OUTPUT:-
7
• <head></head>: Do not contains any data to be
displayed in Content area of web page. Contains vital
info about page and other tags.
• <title></title>: Defines a title in the browser toolbar.
• <style></style>: To define style information for an
HTML document.
• Etc…
8
• Heading Tag: It is used to give different
headings in the document.
• These are from <h1> to <h6>..
9
• <p> Paragraph </p>
• Unordered list:
• Ordered List:
• o
<a href=“ abc.c m”>ABC</a>
• Used to create hyperlinks.
• <table border="1"> //To make a
table
<tr> //table row
<th>Month</th> //column heading
<th>Savings</th>
</tr>
<tr>
<td>January</td> // definition
<td>$100</td>
</tr></table>
Month Savings
January $100
February $80
10
• CSS stands for Cascading Style Sheets.
• Styles define how to display HTML elements.
• CSS is used to manage the PRESENTATION
part of the web page.
• CSS separates HTML part from presentation
part.
11
12
• Pages download faster, sometimes by
as much as 50%.
• You have to type less code, and your
pages are shorter and neater.
• Updating your design and general site
maintenance are made much easier,
and errors caused by editing multiple
HTML pages occur far less often.
CSS - INTRODUCTION
• Three ways to implement CSS in a page
are:-
• Internal Stylesheet
• External Style Sheet (BEST APPROACH)
• Inline Style Sheet
13
• Inline Stylesheets
• To use inline styles, use the style attribute in the
relevant tag. The style attribute can contain any CSS
property.
• Ex.
• <p style="color:blue;margin-left:20px">This is a
paragraph.</p>
14
• Internal Stylesheets
• An internal style sheet should be used when a single
document has a unique style. It is embedded generally
inside the <head> tag
• Ex.
<head><style type="text/css">
p {margin-left:20px;></style></head>
15
• External Stylesheets
An external style sheet is ideal when the style is applied to
many pages. With an external style sheet, we can change
the look of an entire Web site by changing one file.
• An external style sheet can be written in any text editor.
The file should not contain any html tags. The style sheet
should be saved with a .css extension.
• Ex.
<head><link rel="stylesheet" type="text/css"
href="mystyle.css" /></head>
16
17
ASK YOUR DOUBTS NOW IF ANY

More Related Content

Similar to html css intro sanskar , saurabh.pptx

FYBSC IT Web Programming Unit I HTML 5 & andcss
FYBSC IT Web Programming Unit I HTML 5 & andcssFYBSC IT Web Programming Unit I HTML 5 & andcss
FYBSC IT Web Programming Unit I HTML 5 & andcss
Arti Parab Academics
 
Html
HtmlHtml
HTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).pptHTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).ppt
Dianajeon3
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
dilanie77
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptx
MattMarino13
 
Html presentation
Html presentationHtml presentation
Html presentation
Jordan Dichev
 
Cascading style sheets
Cascading style sheetsCascading style sheets
Cascading style sheets
smithaps4
 
1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx
MattMarino13
 
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
learnhtmlbyvipuladissanayake-170516061515 (1).pptxlearnhtmlbyvipuladissanayake-170516061515 (1).pptx
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
ManuAbraham17
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
McSoftsis
 
html
htmlhtml
html
tumetr1
 
basic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdfbasic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdf
elayelily
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
Stefan Oprea
 
Introductions of the HTML Language .pptx
Introductions of the HTML Language .pptxIntroductions of the HTML Language .pptx
Introductions of the HTML Language .pptx
lahelex741
 
Ankit (221348051) BCA-Aiml.pptx
Ankit (221348051) BCA-Aiml.pptxAnkit (221348051) BCA-Aiml.pptx
Ankit (221348051) BCA-Aiml.pptx
HKShab
 
Ifi7174 lesson2
Ifi7174 lesson2Ifi7174 lesson2
Ifi7174 lesson2
Sónia
 
HYPER TEXT MARKUP LANGUAGE BASIC LESSONS
HYPER TEXT MARKUP LANGUAGE BASIC LESSONSHYPER TEXT MARKUP LANGUAGE BASIC LESSONS
HYPER TEXT MARKUP LANGUAGE BASIC LESSONS
divyajohnisg
 
Cascading style sheets
Cascading style sheetsCascading style sheets
Cascading style sheets
smitha273566
 
Slides 2 - HTML
Slides 2 - HTMLSlides 2 - HTML
Slides 2 - HTML
Massimo Callisto
 
Web development basics
Web development basicsWeb development basics
Web development basics
Kalluri Vinay Reddy
 

Similar to html css intro sanskar , saurabh.pptx (20)

FYBSC IT Web Programming Unit I HTML 5 & andcss
FYBSC IT Web Programming Unit I HTML 5 & andcssFYBSC IT Web Programming Unit I HTML 5 & andcss
FYBSC IT Web Programming Unit I HTML 5 & andcss
 
Html
HtmlHtml
Html
 
HTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).pptHTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).ppt
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptx
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Cascading style sheets
Cascading style sheetsCascading style sheets
Cascading style sheets
 
1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx
 
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
learnhtmlbyvipuladissanayake-170516061515 (1).pptxlearnhtmlbyvipuladissanayake-170516061515 (1).pptx
learnhtmlbyvipuladissanayake-170516061515 (1).pptx
 
Learn html Basics
Learn html BasicsLearn html Basics
Learn html Basics
 
html
htmlhtml
html
 
basic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdfbasic programming language AND HTML CSS JAVApdf
basic programming language AND HTML CSS JAVApdf
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
Introductions of the HTML Language .pptx
Introductions of the HTML Language .pptxIntroductions of the HTML Language .pptx
Introductions of the HTML Language .pptx
 
Ankit (221348051) BCA-Aiml.pptx
Ankit (221348051) BCA-Aiml.pptxAnkit (221348051) BCA-Aiml.pptx
Ankit (221348051) BCA-Aiml.pptx
 
Ifi7174 lesson2
Ifi7174 lesson2Ifi7174 lesson2
Ifi7174 lesson2
 
HYPER TEXT MARKUP LANGUAGE BASIC LESSONS
HYPER TEXT MARKUP LANGUAGE BASIC LESSONSHYPER TEXT MARKUP LANGUAGE BASIC LESSONS
HYPER TEXT MARKUP LANGUAGE BASIC LESSONS
 
Cascading style sheets
Cascading style sheetsCascading style sheets
Cascading style sheets
 
Slides 2 - HTML
Slides 2 - HTMLSlides 2 - HTML
Slides 2 - HTML
 
Web development basics
Web development basicsWeb development basics
Web development basics
 

Recently uploaded

Counter Terrorism Department Jobs 2024 | CTD Jobs in Punjab Police
Counter Terrorism Department Jobs 2024 | CTD Jobs in Punjab PoliceCounter Terrorism Department Jobs 2024 | CTD Jobs in Punjab Police
Counter Terrorism Department Jobs 2024 | CTD Jobs in Punjab Police
Merrie rp
 
Call Girls Service Marathahalli ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl Se...
Call Girls Service Marathahalli ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl Se...Call Girls Service Marathahalli ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl Se...
Call Girls Service Marathahalli ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl Se...
hina ojha$A17
 
一比一原版(悉尼科技毕业证书)澳洲悉尼科技大学毕业证如何办理
一比一原版(悉尼科技毕业证书)澳洲悉尼科技大学毕业证如何办理一比一原版(悉尼科技毕业证书)澳洲悉尼科技大学毕业证如何办理
一比一原版(悉尼科技毕业证书)澳洲悉尼科技大学毕业证如何办理
mfria419
 
一比一原版加拿大特伦特大学毕业证如何办理
一比一原版加拿大特伦特大学毕业证如何办理一比一原版加拿大特伦特大学毕业证如何办理
一比一原版加拿大特伦特大学毕业证如何办理
ofogyhw
 
UZZAL MAZUMDER, IT Consultant/Head of IT, Frannan International Ltd. (UK), Fu...
UZZAL MAZUMDER, IT Consultant/Head of IT, Frannan International Ltd. (UK), Fu...UZZAL MAZUMDER, IT Consultant/Head of IT, Frannan International Ltd. (UK), Fu...
UZZAL MAZUMDER, IT Consultant/Head of IT, Frannan International Ltd. (UK), Fu...
UzzalMazumder1
 
一比一原版(isu学位证书)爱荷华州立大学毕业证如何办理
一比一原版(isu学位证书)爱荷华州立大学毕业证如何办理一比一原版(isu学位证书)爱荷华州立大学毕业证如何办理
一比一原版(isu学位证书)爱荷华州立大学毕业证如何办理
auagoh
 
一比一原版(lincoln学位证书)英国林肯大学毕业证如何办理
一比一原版(lincoln学位证书)英国林肯大学毕业证如何办理一比一原版(lincoln学位证书)英国林肯大学毕业证如何办理
一比一原版(lincoln学位证书)英国林肯大学毕业证如何办理
eaoko
 
Social_Science_Sec_2hhhhhhnnnnjj024-.pdf
Social_Science_Sec_2hhhhhhnnnnjj024-.pdfSocial_Science_Sec_2hhhhhhnnnnjj024-.pdf
Social_Science_Sec_2hhhhhhnnnnjj024-.pdf
ekansh222008
 
Desi Call Girls Kolkata 🔥 7737669865 🔥 Available Nearby Escort Is Live Ready ...
Desi Call Girls Kolkata 🔥 7737669865 🔥 Available Nearby Escort Is Live Ready ...Desi Call Girls Kolkata 🔥 7737669865 🔥 Available Nearby Escort Is Live Ready ...
Desi Call Girls Kolkata 🔥 7737669865 🔥 Available Nearby Escort Is Live Ready ...
yashusingh54876
 
Climate Change Career Pathways_BRACU_June 25, 2024.pptx
Climate Change Career Pathways_BRACU_June 25, 2024.pptxClimate Change Career Pathways_BRACU_June 25, 2024.pptx
Climate Change Career Pathways_BRACU_June 25, 2024.pptx
Shahadat Hossain Shakil
 
一比一原版(天普毕业证书)美国天普大学毕业证如何办理
一比一原版(天普毕业证书)美国天普大学毕业证如何办理一比一原版(天普毕业证书)美国天普大学毕业证如何办理
一比一原版(天普毕业证书)美国天普大学毕业证如何办理
sf3cfttw
 
Top Recruitment Agencies in Pakistan - Delta International Recruitment Agency
Top Recruitment Agencies in Pakistan -  Delta International Recruitment AgencyTop Recruitment Agencies in Pakistan -  Delta International Recruitment Agency
Top Recruitment Agencies in Pakistan - Delta International Recruitment Agency
Delta International Recruitment Agency
 
Are College Degrees Necessary for everyone.pptx
Are College Degrees Necessary for everyone.pptxAre College Degrees Necessary for everyone.pptx
Are College Degrees Necessary for everyone.pptx
Kunal Kumar Gupta
 
Biography and career of Gerry Falletta.pdf
Biography and career of Gerry Falletta.pdfBiography and career of Gerry Falletta.pdf
Biography and career of Gerry Falletta.pdf
Gerry Falletta
 
LACA Nepal Budget 2081-dknfenjnfjnf82.docx
LACA Nepal Budget 2081-dknfenjnfjnf82.docxLACA Nepal Budget 2081-dknfenjnfjnf82.docx
LACA Nepal Budget 2081-dknfenjnfjnf82.docx
YamRajBohara
 
🔥Foreigners Call Girls Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Escorts ...
🔥Foreigners Call Girls Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Escorts ...🔥Foreigners Call Girls Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Escorts ...
🔥Foreigners Call Girls Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Escorts ...
yuvishachadda
 
🔥Aligarh Call Girls 🫱 7023059433 🫲 High Class Independent Escorts Service Ava...
🔥Aligarh Call Girls 🫱 7023059433 🫲 High Class Independent Escorts Service Ava...🔥Aligarh Call Girls 🫱 7023059433 🫲 High Class Independent Escorts Service Ava...
🔥Aligarh Call Girls 🫱 7023059433 🫲 High Class Independent Escorts Service Ava...
khushi sharman06
 
十大欧洲杯买球靠谱平台-欧洲杯买球最稳定的平台 |【​网址​🎉ac55.net🎉​】 .
十大欧洲杯买球靠谱平台-欧洲杯买球最稳定的平台 |【​网址​🎉ac55.net🎉​】   .十大欧洲杯买球靠谱平台-欧洲杯买球最稳定的平台 |【​网址​🎉ac55.net🎉​】   .
十大欧洲杯买球靠谱平台-欧洲杯买球最稳定的平台 |【​网址​🎉ac55.net🎉​】 .
cubinoluca455
 
Verified Call Girls Hyderabad 🔥 9352988975 🔥 Available Nearby Escort Is Live ...
Verified Call Girls Hyderabad 🔥 9352988975 🔥 Available Nearby Escort Is Live ...Verified Call Girls Hyderabad 🔥 9352988975 🔥 Available Nearby Escort Is Live ...
Verified Call Girls Hyderabad 🔥 9352988975 🔥 Available Nearby Escort Is Live ...
yashusingh54876
 
2024欧洲杯投注-2024欧洲杯投注赛程-2024欧洲杯投注压注 |【​网址​🎉ac44.net🎉​】
2024欧洲杯投注-2024欧洲杯投注赛程-2024欧洲杯投注压注 |【​网址​🎉ac44.net🎉​】2024欧洲杯投注-2024欧洲杯投注赛程-2024欧洲杯投注压注 |【​网址​🎉ac44.net🎉​】
2024欧洲杯投注-2024欧洲杯投注赛程-2024欧洲杯投注压注 |【​网址​🎉ac44.net🎉​】
bennertr66340
 

Recently uploaded (20)

Counter Terrorism Department Jobs 2024 | CTD Jobs in Punjab Police
Counter Terrorism Department Jobs 2024 | CTD Jobs in Punjab PoliceCounter Terrorism Department Jobs 2024 | CTD Jobs in Punjab Police
Counter Terrorism Department Jobs 2024 | CTD Jobs in Punjab Police
 
Call Girls Service Marathahalli ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl Se...
Call Girls Service Marathahalli ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl Se...Call Girls Service Marathahalli ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl Se...
Call Girls Service Marathahalli ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl Se...
 
一比一原版(悉尼科技毕业证书)澳洲悉尼科技大学毕业证如何办理
一比一原版(悉尼科技毕业证书)澳洲悉尼科技大学毕业证如何办理一比一原版(悉尼科技毕业证书)澳洲悉尼科技大学毕业证如何办理
一比一原版(悉尼科技毕业证书)澳洲悉尼科技大学毕业证如何办理
 
一比一原版加拿大特伦特大学毕业证如何办理
一比一原版加拿大特伦特大学毕业证如何办理一比一原版加拿大特伦特大学毕业证如何办理
一比一原版加拿大特伦特大学毕业证如何办理
 
UZZAL MAZUMDER, IT Consultant/Head of IT, Frannan International Ltd. (UK), Fu...
UZZAL MAZUMDER, IT Consultant/Head of IT, Frannan International Ltd. (UK), Fu...UZZAL MAZUMDER, IT Consultant/Head of IT, Frannan International Ltd. (UK), Fu...
UZZAL MAZUMDER, IT Consultant/Head of IT, Frannan International Ltd. (UK), Fu...
 
一比一原版(isu学位证书)爱荷华州立大学毕业证如何办理
一比一原版(isu学位证书)爱荷华州立大学毕业证如何办理一比一原版(isu学位证书)爱荷华州立大学毕业证如何办理
一比一原版(isu学位证书)爱荷华州立大学毕业证如何办理
 
一比一原版(lincoln学位证书)英国林肯大学毕业证如何办理
一比一原版(lincoln学位证书)英国林肯大学毕业证如何办理一比一原版(lincoln学位证书)英国林肯大学毕业证如何办理
一比一原版(lincoln学位证书)英国林肯大学毕业证如何办理
 
Social_Science_Sec_2hhhhhhnnnnjj024-.pdf
Social_Science_Sec_2hhhhhhnnnnjj024-.pdfSocial_Science_Sec_2hhhhhhnnnnjj024-.pdf
Social_Science_Sec_2hhhhhhnnnnjj024-.pdf
 
Desi Call Girls Kolkata 🔥 7737669865 🔥 Available Nearby Escort Is Live Ready ...
Desi Call Girls Kolkata 🔥 7737669865 🔥 Available Nearby Escort Is Live Ready ...Desi Call Girls Kolkata 🔥 7737669865 🔥 Available Nearby Escort Is Live Ready ...
Desi Call Girls Kolkata 🔥 7737669865 🔥 Available Nearby Escort Is Live Ready ...
 
Climate Change Career Pathways_BRACU_June 25, 2024.pptx
Climate Change Career Pathways_BRACU_June 25, 2024.pptxClimate Change Career Pathways_BRACU_June 25, 2024.pptx
Climate Change Career Pathways_BRACU_June 25, 2024.pptx
 
一比一原版(天普毕业证书)美国天普大学毕业证如何办理
一比一原版(天普毕业证书)美国天普大学毕业证如何办理一比一原版(天普毕业证书)美国天普大学毕业证如何办理
一比一原版(天普毕业证书)美国天普大学毕业证如何办理
 
Top Recruitment Agencies in Pakistan - Delta International Recruitment Agency
Top Recruitment Agencies in Pakistan -  Delta International Recruitment AgencyTop Recruitment Agencies in Pakistan -  Delta International Recruitment Agency
Top Recruitment Agencies in Pakistan - Delta International Recruitment Agency
 
Are College Degrees Necessary for everyone.pptx
Are College Degrees Necessary for everyone.pptxAre College Degrees Necessary for everyone.pptx
Are College Degrees Necessary for everyone.pptx
 
Biography and career of Gerry Falletta.pdf
Biography and career of Gerry Falletta.pdfBiography and career of Gerry Falletta.pdf
Biography and career of Gerry Falletta.pdf
 
LACA Nepal Budget 2081-dknfenjnfjnf82.docx
LACA Nepal Budget 2081-dknfenjnfjnf82.docxLACA Nepal Budget 2081-dknfenjnfjnf82.docx
LACA Nepal Budget 2081-dknfenjnfjnf82.docx
 
🔥Foreigners Call Girls Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Escorts ...
🔥Foreigners Call Girls Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Escorts ...🔥Foreigners Call Girls Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Escorts ...
🔥Foreigners Call Girls Pune 💯Call Us 🔝 7014168258 🔝💃Independent Pune Escorts ...
 
🔥Aligarh Call Girls 🫱 7023059433 🫲 High Class Independent Escorts Service Ava...
🔥Aligarh Call Girls 🫱 7023059433 🫲 High Class Independent Escorts Service Ava...🔥Aligarh Call Girls 🫱 7023059433 🫲 High Class Independent Escorts Service Ava...
🔥Aligarh Call Girls 🫱 7023059433 🫲 High Class Independent Escorts Service Ava...
 
十大欧洲杯买球靠谱平台-欧洲杯买球最稳定的平台 |【​网址​🎉ac55.net🎉​】 .
十大欧洲杯买球靠谱平台-欧洲杯买球最稳定的平台 |【​网址​🎉ac55.net🎉​】   .十大欧洲杯买球靠谱平台-欧洲杯买球最稳定的平台 |【​网址​🎉ac55.net🎉​】   .
十大欧洲杯买球靠谱平台-欧洲杯买球最稳定的平台 |【​网址​🎉ac55.net🎉​】 .
 
Verified Call Girls Hyderabad 🔥 9352988975 🔥 Available Nearby Escort Is Live ...
Verified Call Girls Hyderabad 🔥 9352988975 🔥 Available Nearby Escort Is Live ...Verified Call Girls Hyderabad 🔥 9352988975 🔥 Available Nearby Escort Is Live ...
Verified Call Girls Hyderabad 🔥 9352988975 🔥 Available Nearby Escort Is Live ...
 
2024欧洲杯投注-2024欧洲杯投注赛程-2024欧洲杯投注压注 |【​网址​🎉ac44.net🎉​】
2024欧洲杯投注-2024欧洲杯投注赛程-2024欧洲杯投注压注 |【​网址​🎉ac44.net🎉​】2024欧洲杯投注-2024欧洲杯投注赛程-2024欧洲杯投注压注 |【​网址​🎉ac44.net🎉​】
2024欧洲杯投注-2024欧洲杯投注赛程-2024欧洲杯投注压注 |【​网址​🎉ac44.net🎉​】
 

html css intro sanskar , saurabh.pptx

  • 1. fu Basic Introduction to : HTML & CSS Presented by – 1. Sanskar Dubey 2. Saurabh Singh Fundamentals of Computer & Programming TOPIC - Presented to – Mr. Gaurav Dwivedi sir 1
  • 2. 2 Table Of Contents – • History & Why HTML and CSS • HTML Introduction • WEB PAGE • HTML Basic Tags and Attributes • CSS Introduction • INLINE Stylesheets • INTERNAL Stylesheets • EXTERNAL Stylesheets
  • 3. 3 A Brief History and Some Common Quetions – • WHY HTML and CSS ? • Use of it ? • Hard or easy to learn ? • How to use ? • Safe or not ?
  • 4. • Tim Berners-Lee. • HTML stands for Hyper Text Markup Language. • HTML is not a programming language. • BUT it is a formatting language. • Used in developing Web Pages 4
  • 5. • Web Page can be further divided into :- • Structure-What the different part of content are and how they are related. • Presentation-How the content should be displayed and formatted Visually. • . • HTML is used to maintain STRUCTURE of the document. • CSS is used to maintain PRESENTATION of the document. 5
  • 6. • HTML Tags<> • HTML tags are keywords (tag names) surrounded by angle brackets like <html> • HTML tags normally come in pairs like <b> and </b> • The first tag in a pair is the start tag, the second tag is the end tag • The end tag is written like the start tag, with a forward slash before the tag name • Start and end tags are also called opening tags and closing tags • HTML Elements • HTML element is everything between the start tag and the end tag, including the tags. • HTML Element: <p>This is a paragraph.</p> 6
  • 7. Sample Program <!DOCTYPE html> <html> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> OUTPUT:- 7
  • 8. • <head></head>: Do not contains any data to be displayed in Content area of web page. Contains vital info about page and other tags. • <title></title>: Defines a title in the browser toolbar. • <style></style>: To define style information for an HTML document. • Etc… 8
  • 9. • Heading Tag: It is used to give different headings in the document. • These are from <h1> to <h6>.. 9
  • 10. • <p> Paragraph </p> • Unordered list: • Ordered List: • o <a href=“ abc.c m”>ABC</a> • Used to create hyperlinks. • <table border="1"> //To make a table <tr> //table row <th>Month</th> //column heading <th>Savings</th> </tr> <tr> <td>January</td> // definition <td>$100</td> </tr></table> Month Savings January $100 February $80 10
  • 11. • CSS stands for Cascading Style Sheets. • Styles define how to display HTML elements. • CSS is used to manage the PRESENTATION part of the web page. • CSS separates HTML part from presentation part. 11
  • 12. 12 • Pages download faster, sometimes by as much as 50%. • You have to type less code, and your pages are shorter and neater. • Updating your design and general site maintenance are made much easier, and errors caused by editing multiple HTML pages occur far less often. CSS - INTRODUCTION
  • 13. • Three ways to implement CSS in a page are:- • Internal Stylesheet • External Style Sheet (BEST APPROACH) • Inline Style Sheet 13
  • 14. • Inline Stylesheets • To use inline styles, use the style attribute in the relevant tag. The style attribute can contain any CSS property. • Ex. • <p style="color:blue;margin-left:20px">This is a paragraph.</p> 14
  • 15. • Internal Stylesheets • An internal style sheet should be used when a single document has a unique style. It is embedded generally inside the <head> tag • Ex. <head><style type="text/css"> p {margin-left:20px;></style></head> 15
  • 16. • External Stylesheets An external style sheet is ideal when the style is applied to many pages. With an external style sheet, we can change the look of an entire Web site by changing one file. • An external style sheet can be written in any text editor. The file should not contain any html tags. The style sheet should be saved with a .css extension. • Ex. <head><link rel="stylesheet" type="text/css" href="mystyle.css" /></head> 16
  • 17. 17 ASK YOUR DOUBTS NOW IF ANY
  翻译: