SlideShare a Scribd company logo
By Stephanie Huynh
Why have I created this presentation?




โ€ข For my web design class assignment based on
  what the class has focused on for the past few
  weeks which are:
           ~HTTP5 (Hyper Text Transfer Protocol)
           ~HTML (Hyper Text Mark up Language)
           ~Cascade Style Sheet (CSS)
What is my chosen
   element?
โ€ข To make a
                      difference to your
                      webpage you
                      design.
                    โ€ข Changes the
                      audienceโ€™s view of
 Why would you        web pages.
 need to use this   โ€ข Is creative
type of element?
Which internet browsers support the
       type of code we use?

                            โ€ข   Google Chrome
                            โ€ข   Internet Explorer
                            โ€ข   Firefox
                            โ€ข   Opera
                            โ€ข   Safari
       HINT - Google Chrome is the
       recommended internet browser to use to
       show CSS at its best potential
How to begin using HTTP/HTML
โ€ข You will first have to use a program to build
  your webpage.
โ€ข For starters you can use the program notepad.
โ€ข I prefer using a program called Notepad++
  which is a free program downloadable from
  the internet.
How to begin using CSS
             โ€ข This is a screenshot
               of my webpage html
               using notepad++.
             โ€ข To start using my
               CSS, I created a
               external CSS page
               and had to link it with
               my HTML page as
               seen on the
               screenshot.
โ€ข To begin demonstrating my element I will first
  have to import a image onto my webpage.




             I have chosen this image to
               focus on in my example.
โ€ข Here is a screenshot on how I have
                     imported a image into my html code.
                     I have used <img src=โ€œimage
                     nameโ€.image typeโ€/>

                       HINT: Ensure your image is saved in the same
                       folder/area as where your html and CSS code is saved.
In this example my image
name is โ€œPicture1โ€ and the
file type was โ€œjpegโ€
โ€ข This is what my webpage looks like so far.
โ€ข The amazing idea about CSS is that you can
  customise what a image can appear as or
  positioned on your webpage.
Border

   โ€ข My first creative CSS
     feature I would like to
     demonstrate is to
     create a border
     surrounding your
     selected image.
โ€ข The code displayed above in my CSS file, creates a
  black border 5 pixels thick.
  The code is;
  img {border : pixel size solid;}
Borders
โ€ข You can create different coloured borders for
  your image with the code used in the previous
  slide but with a little extra code to add.
   The code is;
  img {border : pixel size solid colour;}
  EG - img {border : 5px solid blue;}
โ€ข Next CSS feature I will demonstrate is to edit
  the size of the image displayed on my
  webpage.
  The code is;

  Width: Size in pixels
  Height: Size in pixels
โ€ข This is how my webpage is displayed so far
  with the following features on CSS;
  ~A border
  ~The change of size of the image
Positioning CSS
โ€ข The next CSS feature I will introduce and
  demonstrate is to have the ability to position
  your image in a certain way on your webpage.
  There are certain element positioning
  techniques available with the following codes;

  ~Static
  ~Absolute
  ~Fixed
  ~Relative
Static positioning
โ€ข This is the default setting for every page
  element. Each element that can be used all
  have the same default setting as โ€˜Staticโ€™
  positioning.
โ€ข The only reason why you would set an
  element to position: static is to forcefully
  remove some positioning that got applied to
  an element outside of your control.
Static positioning screenshot



                Also known as the default
                setting for all elements.
Relative positioning
โ€ข If you set a element to relative position
  without other positioning attributes
  (top, bottom, left or right) there will be no
  difference than the static positioning.
โ€ข If a positioning attribute e.g top100px is used
  than it will shift your element 100pixels down
  from where it is normally placed rather than
  100 pixels above the normal position the
  element is placed.
Relative positioning screenshot
Fixed positioning
โ€ข This type of positioning is used rarely but is
  also useful.
โ€ข It is relative positioned in a browser.
โ€ข The special feature of this positioning, is that
  it will not move even if the window is scrolled.
With the two screenshots
demonstrates the positioning set
to fixed. As I scrolled to the
bottom of my webpage the
image stayed in the same exact
position.
Absolute positioning
โ€ข This is the best positioning option because
  this technique allows users to place an
  element exactly where you want it to be
  placed.
โ€ข Using the positioning attributes top, bottom,
  left and right to set the position.
โ€ข Setting the position attribute using pixels on
  the webpage. (E.g Top:100px;)
โ€ข As I said before, setting your
  element to absolute, is the most
  ideal positioning as you can
  position your element exactly
  where you prefer.
  As seen on my screenshot I was
  able to position my element in
  the center of my webpage.
REMINDER - Web Browser differences
โ€ข As discussed before on a previous
  slide, different web browsers may affect some
  features offered for your element and CSS
  designs, such as my CSS demonstrations.
โ€ข I recommend using Google Chrome to ensure
  you are able to sight all features at itโ€™s best
  quality.
Floating
โ€ข Elements are floated horizontally meaning
  left and right. (NOT up and down)
โ€ข A floated element will move as far either
  left or right depending where you set it.
โ€ข Other elements used will flow around the
  floating element.
Floating
                                          โ€ข Here are two
                                            screenshots of a
                                            image floating to
ABOVE โ€“ Image is floating to the right.     the right and
                                            another floating
                                            to the left.


ABOVE โ€“ Image is floating to the left.
โ€ข Below is a screenshot of several
  extra images uploaded onto my
  webpage and are all set on floating
  to the right.
โ€ข Than we can use a HTML div tag.
HTML Div tag
โ€ข Div tags can be viewed as containers as they
  group certain elements of a web page
  together.

โ€ข E.G โ€“ If I wanted to upload multiple
  images, and each image has different border
  settings, image size etc.
The image below is a screenshot of me using a div class for two images
and also the floating element. One image is floating on the left and the
other image floating on the right.




  The next slide will
  have valid code to
  make your web page
  like the above image.
โ€ข Here is the
  code I used
  to have my
  webpage
  displayed like
  the previous
  slide screen
  shot.
Testing
โ€ข I have tested my HTML/CSS element on two
  popular web browsers.

โ€ข Google Chrome โ€“ worked successfully
โ€ข Internet Explorer โ€“ worked successfully
What we have demonstrated in this
            presentation
โ€ข We have learnt how to begin our HTML5 Page and
  connecting a CSS page.
โ€ข We have shown you different web browsers you can choose
  to use.
โ€ข How to import a image into your web page.
โ€ข How to put a border around your image and select the
  colour of the border.
โ€ข How to change the size of your image using pixels.
โ€ข The different types of positioning for elements.
โ€ข How to make your element float to the left or right.
โ€ข What the div tag can do
โ€ข A result of my testing on two different web browsers.
By Stephanie Huynh
Ad

More Related Content

What's hot (20)

HTML CSS Basics
HTML CSS BasicsHTML CSS Basics
HTML CSS Basics
Mai Moustafa
ย 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Amit Tyagi
ย 
html & css
html & css html & css
html & css
umesh patil
ย 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Amit Tyagi
ย 
Web development using HTML and CSS
Web development using HTML and CSSWeb development using HTML and CSS
Web development using HTML and CSS
SiddhantSingh980217
ย 
Intro to HTML, CSS & JS - Internship Presentation Week-3
Intro to HTML, CSS & JS - Internship Presentation Week-3Intro to HTML, CSS & JS - Internship Presentation Week-3
Intro to HTML, CSS & JS - Internship Presentation Week-3
Devang Garach
ย 
Css
CssCss
Css
mohamed ashraf
ย 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
Abhishek Kesharwani
ย 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
Abhishek Kesharwani
ย 
Introduction to the Web and HTML
Introduction to the Web and HTMLIntroduction to the Web and HTML
Introduction to the Web and HTML
SiddharthBorderwala
ย 
Advanced dreamweaver
Advanced dreamweaverAdvanced dreamweaver
Advanced dreamweaver
Sumit Tambe
ย 
Css ppt
Css pptCss ppt
Css ppt
Nidhi mishra
ย 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
Sukrit Gupta
ย 
Dhtml ppt (2)
Dhtml ppt (2)Dhtml ppt (2)
Dhtml ppt (2)
Rai Saheb Bhanwar Singh College Nasrullaganj
ย 
Web Development Basics: HOW TO in HTML
Web Development Basics: HOW TO in HTMLWeb Development Basics: HOW TO in HTML
Web Development Basics: HOW TO in HTML
Der Lo
ย 
Introduction to css & its attributes with syntax
Introduction to css & its attributes with syntaxIntroduction to css & its attributes with syntax
Introduction to css & its attributes with syntax
priyadharshini murugan
ย 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
ย 
Web Development
Web DevelopmentWeb Development
Web Development
Harshdeep Singh
ย 
HTML CSS JS in Nut shell
HTML  CSS JS in Nut shellHTML  CSS JS in Nut shell
HTML CSS JS in Nut shell
Ashwin Shiv
ย 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
Salman Memon
ย 
HTML CSS Basics
HTML CSS BasicsHTML CSS Basics
HTML CSS Basics
Mai Moustafa
ย 
Introduction to CSS
Introduction to CSSIntroduction to CSS
Introduction to CSS
Amit Tyagi
ย 
html & css
html & css html & css
html & css
umesh patil
ย 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Amit Tyagi
ย 
Web development using HTML and CSS
Web development using HTML and CSSWeb development using HTML and CSS
Web development using HTML and CSS
SiddhantSingh980217
ย 
Intro to HTML, CSS & JS - Internship Presentation Week-3
Intro to HTML, CSS & JS - Internship Presentation Week-3Intro to HTML, CSS & JS - Internship Presentation Week-3
Intro to HTML, CSS & JS - Internship Presentation Week-3
Devang Garach
ย 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
Abhishek Kesharwani
ย 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
Abhishek Kesharwani
ย 
Introduction to the Web and HTML
Introduction to the Web and HTMLIntroduction to the Web and HTML
Introduction to the Web and HTML
SiddharthBorderwala
ย 
Advanced dreamweaver
Advanced dreamweaverAdvanced dreamweaver
Advanced dreamweaver
Sumit Tambe
ย 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
Sukrit Gupta
ย 
Web Development Basics: HOW TO in HTML
Web Development Basics: HOW TO in HTMLWeb Development Basics: HOW TO in HTML
Web Development Basics: HOW TO in HTML
Der Lo
ย 
Introduction to css & its attributes with syntax
Introduction to css & its attributes with syntaxIntroduction to css & its attributes with syntax
Introduction to css & its attributes with syntax
priyadharshini murugan
ย 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
ย 
Web Development
Web DevelopmentWeb Development
Web Development
Harshdeep Singh
ย 
HTML CSS JS in Nut shell
HTML  CSS JS in Nut shellHTML  CSS JS in Nut shell
HTML CSS JS in Nut shell
Ashwin Shiv
ย 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
Salman Memon
ย 

Viewers also liked (19)

ATOMIC STRUCTURE
ATOMIC STRUCTUREATOMIC STRUCTURE
ATOMIC STRUCTURE
mushkaziz02
ย 
Internet Safety For Parents v3
Internet Safety For Parents v3Internet Safety For Parents v3
Internet Safety For Parents v3
MrAColley
ย 
Html & Css presentation
Html  & Css presentation Html  & Css presentation
Html & Css presentation
joilrahat
ย 
Css Ppt
Css PptCss Ppt
Css Ppt
Hema Prasanth
ย 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
Amit Tyagi
ย 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
Amit Kumar Singh
ย 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
ย 
Reveal.js
Reveal.jsReveal.js
Reveal.js
Hakim El Hattab
ย 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
www.netgains.org
ย 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
abhilashagupta
ย 
CSS ppt
CSS pptCSS ppt
CSS ppt
Sanmuga Nathan
ย 
html5.ppt
html5.ppthtml5.ppt
html5.ppt
Niharika Gupta
ย 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
ย 
reveal.js 3.0.0
reveal.js 3.0.0reveal.js 3.0.0
reveal.js 3.0.0
Hakim El Hattab
ย 
HTML/CSS Lecture 1
HTML/CSS Lecture 1HTML/CSS Lecture 1
HTML/CSS Lecture 1
Lee Lundrigan
ย 
HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2
Sharon Wasden
ย 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
ย 
Html Ppt
Html PptHtml Ppt
Html Ppt
vijayanit
ย 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
ย 
ATOMIC STRUCTURE
ATOMIC STRUCTUREATOMIC STRUCTURE
ATOMIC STRUCTURE
mushkaziz02
ย 
Internet Safety For Parents v3
Internet Safety For Parents v3Internet Safety For Parents v3
Internet Safety For Parents v3
MrAColley
ย 
Html & Css presentation
Html  & Css presentation Html  & Css presentation
Html & Css presentation
joilrahat
ย 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
Amit Tyagi
ย 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
Amit Kumar Singh
ย 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
ย 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
www.netgains.org
ย 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
abhilashagupta
ย 
HTML presentation for beginners
HTML presentation for beginnersHTML presentation for beginners
HTML presentation for beginners
jeroenvdmeer
ย 
reveal.js 3.0.0
reveal.js 3.0.0reveal.js 3.0.0
reveal.js 3.0.0
Hakim El Hattab
ย 
HTML/CSS Lecture 1
HTML/CSS Lecture 1HTML/CSS Lecture 1
HTML/CSS Lecture 1
Lee Lundrigan
ย 
HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2
Sharon Wasden
ย 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
ย 
Html Ppt
Html PptHtml Ppt
Html Ppt
vijayanit
ย 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
ย 
Ad

Similar to Steph's Html5 and css presentation (20)

Customizing WordPress Themes
Customizing WordPress ThemesCustomizing WordPress Themes
Customizing WordPress Themes
Domestic Equity Studio
ย 
Advanced CSS.pptx
Advanced CSS.pptxAdvanced CSS.pptx
Advanced CSS.pptx
DiyonaVas
ย 
Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)
Thinkful
ย 
WordPress Plugins to add style to your website
WordPress Plugins to add style to your websiteWordPress Plugins to add style to your website
WordPress Plugins to add style to your website
Belinda Johnstone
ย 
Html 5 and CSS - Image Element
Html 5 and CSS - Image ElementHtml 5 and CSS - Image Element
Html 5 and CSS - Image Element
Kempy7000
ย 
Code & Design your first website 4/18
Code & Design your first website 4/18Code & Design your first website 4/18
Code & Design your first website 4/18
TJ Stalcup
ย 
ClassJavaScript 1: Language Fundamentals06 .pdf
ClassJavaScript 1: Language Fundamentals06 .pdfClassJavaScript 1: Language Fundamentals06 .pdf
ClassJavaScript 1: Language Fundamentals06 .pdf
kasperkey106
ย 
Chapter 7: Images
Chapter 7: ImagesChapter 7: Images
Chapter 7: Images
Steve Guinan
ย 
Elements of html powerpoint
Elements of html powerpointElements of html powerpoint
Elements of html powerpoint
Anastasia1993
ย 
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin..."Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
Yandex
ย 
Content Optimization
Content OptimizationContent Optimization
Content Optimization
Daffodil International University
ย 
Optimizing Your WordPress Site: Why speed matters, and how to get there
Optimizing Your WordPress Site: Why speed matters, and how to get thereOptimizing Your WordPress Site: Why speed matters, and how to get there
Optimizing Your WordPress Site: Why speed matters, and how to get there
Stephen Bell
ย 
Rwd slidedeck
Rwd slidedeckRwd slidedeck
Rwd slidedeck
Vera Kovaleva
ย 
Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.
GaziAhsan
ย 
Lecture 5 & 6 Advance CSS.pptx for web
Lecture 5 & 6 Advance  CSS.pptx for  webLecture 5 & 6 Advance  CSS.pptx for  web
Lecture 5 & 6 Advance CSS.pptx for web
ZahraWaheed9
ย 
GDG On Campus SECE - Web Development Session.pptx
GDG On Campus SECE - Web Development Session.pptxGDG On Campus SECE - Web Development Session.pptx
GDG On Campus SECE - Web Development Session.pptx
aswathcm29
ย 
wordpress-based-non-profit-website-redesign-project-by-digital-systems
wordpress-based-non-profit-website-redesign-project-by-digital-systemswordpress-based-non-profit-website-redesign-project-by-digital-systems
wordpress-based-non-profit-website-redesign-project-by-digital-systems
Digital Systems
ย 
Responsive web design
Responsive web designResponsive web design
Responsive web design
Richa Goel
ย 
Chapter 2.pdf
Chapter 2.pdfChapter 2.pdf
Chapter 2.pdf
AnisZahirahAzman
ย 
Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
Thinkful
ย 
Advanced CSS.pptx
Advanced CSS.pptxAdvanced CSS.pptx
Advanced CSS.pptx
DiyonaVas
ย 
Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)Code &amp; design your first website (3:16)
Code &amp; design your first website (3:16)
Thinkful
ย 
WordPress Plugins to add style to your website
WordPress Plugins to add style to your websiteWordPress Plugins to add style to your website
WordPress Plugins to add style to your website
Belinda Johnstone
ย 
Html 5 and CSS - Image Element
Html 5 and CSS - Image ElementHtml 5 and CSS - Image Element
Html 5 and CSS - Image Element
Kempy7000
ย 
Code & Design your first website 4/18
Code & Design your first website 4/18Code & Design your first website 4/18
Code & Design your first website 4/18
TJ Stalcup
ย 
ClassJavaScript 1: Language Fundamentals06 .pdf
ClassJavaScript 1: Language Fundamentals06 .pdfClassJavaScript 1: Language Fundamentals06 .pdf
ClassJavaScript 1: Language Fundamentals06 .pdf
kasperkey106
ย 
Chapter 7: Images
Chapter 7: ImagesChapter 7: Images
Chapter 7: Images
Steve Guinan
ย 
Elements of html powerpoint
Elements of html powerpointElements of html powerpoint
Elements of html powerpoint
Anastasia1993
ย 
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin..."Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
"Responsive Web Design: Clever Tips and Techniques". Vitaly Friedman, Smashin...
Yandex
ย 
Optimizing Your WordPress Site: Why speed matters, and how to get there
Optimizing Your WordPress Site: Why speed matters, and how to get thereOptimizing Your WordPress Site: Why speed matters, and how to get there
Optimizing Your WordPress Site: Why speed matters, and how to get there
Stephen Bell
ย 
Rwd slidedeck
Rwd slidedeckRwd slidedeck
Rwd slidedeck
Vera Kovaleva
ย 
Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.
GaziAhsan
ย 
Lecture 5 & 6 Advance CSS.pptx for web
Lecture 5 & 6 Advance  CSS.pptx for  webLecture 5 & 6 Advance  CSS.pptx for  web
Lecture 5 & 6 Advance CSS.pptx for web
ZahraWaheed9
ย 
GDG On Campus SECE - Web Development Session.pptx
GDG On Campus SECE - Web Development Session.pptxGDG On Campus SECE - Web Development Session.pptx
GDG On Campus SECE - Web Development Session.pptx
aswathcm29
ย 
wordpress-based-non-profit-website-redesign-project-by-digital-systems
wordpress-based-non-profit-website-redesign-project-by-digital-systemswordpress-based-non-profit-website-redesign-project-by-digital-systems
wordpress-based-non-profit-website-redesign-project-by-digital-systems
Digital Systems
ย 
Responsive web design
Responsive web designResponsive web design
Responsive web design
Richa Goel
ย 
Html css crash course may 11th, atlanta
Html css crash course may 11th, atlantaHtml css crash course may 11th, atlanta
Html css crash course may 11th, atlanta
Thinkful
ย 
Ad

Recently uploaded (20)

2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
ย 
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy ConsumptionDrupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Exove
ย 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
ย 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
ย 
Buckeye Dreamin' 2023: De-fogging Debug Logs
Buckeye Dreamin' 2023: De-fogging Debug LogsBuckeye Dreamin' 2023: De-fogging Debug Logs
Buckeye Dreamin' 2023: De-fogging Debug Logs
Lynda Kane
ย 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
ย 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
ย 
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from AnywhereAutomation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Lynda Kane
ย 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
ย 
Asthma presentaciรณn en inglรฉs abril 2025 pdf
Asthma presentaciรณn en inglรฉs abril 2025 pdfAsthma presentaciรณn en inglรฉs abril 2025 pdf
Asthma presentaciรณn en inglรฉs abril 2025 pdf
VanessaRaudez
ย 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
ย 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
ย 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
ย 
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
Lynda Kane
ย 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
ย 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
ย 
Rock, Paper, Scissors: An Apex Map Learning Journey
Rock, Paper, Scissors: An Apex Map Learning JourneyRock, Paper, Scissors: An Apex Map Learning Journey
Rock, Paper, Scissors: An Apex Map Learning Journey
Lynda Kane
ย 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
ย 
Learn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step GuideLearn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step Guide
Marcel David
ย 
Network Security. Different aspects of Network Security.
Network Security. Different aspects of Network Security.Network Security. Different aspects of Network Security.
Network Security. Different aspects of Network Security.
gregtap1
ย 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
ย 
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy ConsumptionDrupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Exove
ย 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
ย 
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical DebtBuckeye Dreamin 2024: Assessing and Resolving Technical Debt
Buckeye Dreamin 2024: Assessing and Resolving Technical Debt
Lynda Kane
ย 
Buckeye Dreamin' 2023: De-fogging Debug Logs
Buckeye Dreamin' 2023: De-fogging Debug LogsBuckeye Dreamin' 2023: De-fogging Debug Logs
Buckeye Dreamin' 2023: De-fogging Debug Logs
Lynda Kane
ย 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
ย 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
ย 
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from AnywhereAutomation Hour 1/28/2022: Capture User Feedback from Anywhere
Automation Hour 1/28/2022: Capture User Feedback from Anywhere
Lynda Kane
ย 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
ย 
Asthma presentaciรณn en inglรฉs abril 2025 pdf
Asthma presentaciรณn en inglรฉs abril 2025 pdfAsthma presentaciรณn en inglรฉs abril 2025 pdf
Asthma presentaciรณn en inglรฉs abril 2025 pdf
VanessaRaudez
ย 
Big Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur MorganBig Data Analytics Quick Research Guide by Arthur Morgan
Big Data Analytics Quick Research Guide by Arthur Morgan
Arthur Morgan
ย 
Semantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AISemantic Cultivators : The Critical Future Role to Enable AI
Semantic Cultivators : The Critical Future Role to Enable AI
artmondano
ย 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
ย 
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
#AdminHour presents: Hour of Code2018 slide deck from 12/6/2018
Lynda Kane
ย 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
ย 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
ย 
Rock, Paper, Scissors: An Apex Map Learning Journey
Rock, Paper, Scissors: An Apex Map Learning JourneyRock, Paper, Scissors: An Apex Map Learning Journey
Rock, Paper, Scissors: An Apex Map Learning Journey
Lynda Kane
ย 
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptxSpecial Meetup Edition - TDX Bengaluru Meetup #52.pptx
Special Meetup Edition - TDX Bengaluru Meetup #52.pptx
shyamraj55
ย 
Learn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step GuideLearn the Basics of Agile Development: Your Step-by-Step Guide
Learn the Basics of Agile Development: Your Step-by-Step Guide
Marcel David
ย 
Network Security. Different aspects of Network Security.
Network Security. Different aspects of Network Security.Network Security. Different aspects of Network Security.
Network Security. Different aspects of Network Security.
gregtap1
ย 

Steph's Html5 and css presentation

  • 2. Why have I created this presentation? โ€ข For my web design class assignment based on what the class has focused on for the past few weeks which are: ~HTTP5 (Hyper Text Transfer Protocol) ~HTML (Hyper Text Mark up Language) ~Cascade Style Sheet (CSS)
  • 3. What is my chosen element?
  • 4. โ€ข To make a difference to your webpage you design. โ€ข Changes the audienceโ€™s view of Why would you web pages. need to use this โ€ข Is creative type of element?
  • 5. Which internet browsers support the type of code we use? โ€ข Google Chrome โ€ข Internet Explorer โ€ข Firefox โ€ข Opera โ€ข Safari HINT - Google Chrome is the recommended internet browser to use to show CSS at its best potential
  • 6. How to begin using HTTP/HTML โ€ข You will first have to use a program to build your webpage. โ€ข For starters you can use the program notepad. โ€ข I prefer using a program called Notepad++ which is a free program downloadable from the internet.
  • 7. How to begin using CSS โ€ข This is a screenshot of my webpage html using notepad++. โ€ข To start using my CSS, I created a external CSS page and had to link it with my HTML page as seen on the screenshot.
  • 8. โ€ข To begin demonstrating my element I will first have to import a image onto my webpage. I have chosen this image to focus on in my example.
  • 9. โ€ข Here is a screenshot on how I have imported a image into my html code. I have used <img src=โ€œimage nameโ€.image typeโ€/> HINT: Ensure your image is saved in the same folder/area as where your html and CSS code is saved. In this example my image name is โ€œPicture1โ€ and the file type was โ€œjpegโ€
  • 10. โ€ข This is what my webpage looks like so far.
  • 11. โ€ข The amazing idea about CSS is that you can customise what a image can appear as or positioned on your webpage.
  • 12. Border โ€ข My first creative CSS feature I would like to demonstrate is to create a border surrounding your selected image.
  • 13. โ€ข The code displayed above in my CSS file, creates a black border 5 pixels thick. The code is; img {border : pixel size solid;}
  • 14. Borders โ€ข You can create different coloured borders for your image with the code used in the previous slide but with a little extra code to add. The code is; img {border : pixel size solid colour;} EG - img {border : 5px solid blue;}
  • 15. โ€ข Next CSS feature I will demonstrate is to edit the size of the image displayed on my webpage. The code is; Width: Size in pixels Height: Size in pixels
  • 16. โ€ข This is how my webpage is displayed so far with the following features on CSS; ~A border ~The change of size of the image
  • 17. Positioning CSS โ€ข The next CSS feature I will introduce and demonstrate is to have the ability to position your image in a certain way on your webpage. There are certain element positioning techniques available with the following codes; ~Static ~Absolute ~Fixed ~Relative
  • 18. Static positioning โ€ข This is the default setting for every page element. Each element that can be used all have the same default setting as โ€˜Staticโ€™ positioning. โ€ข The only reason why you would set an element to position: static is to forcefully remove some positioning that got applied to an element outside of your control.
  • 19. Static positioning screenshot Also known as the default setting for all elements.
  • 20. Relative positioning โ€ข If you set a element to relative position without other positioning attributes (top, bottom, left or right) there will be no difference than the static positioning. โ€ข If a positioning attribute e.g top100px is used than it will shift your element 100pixels down from where it is normally placed rather than 100 pixels above the normal position the element is placed.
  • 22. Fixed positioning โ€ข This type of positioning is used rarely but is also useful. โ€ข It is relative positioned in a browser. โ€ข The special feature of this positioning, is that it will not move even if the window is scrolled.
  • 23. With the two screenshots demonstrates the positioning set to fixed. As I scrolled to the bottom of my webpage the image stayed in the same exact position.
  • 24. Absolute positioning โ€ข This is the best positioning option because this technique allows users to place an element exactly where you want it to be placed. โ€ข Using the positioning attributes top, bottom, left and right to set the position. โ€ข Setting the position attribute using pixels on the webpage. (E.g Top:100px;)
  • 25. โ€ข As I said before, setting your element to absolute, is the most ideal positioning as you can position your element exactly where you prefer. As seen on my screenshot I was able to position my element in the center of my webpage.
  • 26. REMINDER - Web Browser differences โ€ข As discussed before on a previous slide, different web browsers may affect some features offered for your element and CSS designs, such as my CSS demonstrations. โ€ข I recommend using Google Chrome to ensure you are able to sight all features at itโ€™s best quality.
  • 27. Floating โ€ข Elements are floated horizontally meaning left and right. (NOT up and down) โ€ข A floated element will move as far either left or right depending where you set it. โ€ข Other elements used will flow around the floating element.
  • 28. Floating โ€ข Here are two screenshots of a image floating to ABOVE โ€“ Image is floating to the right. the right and another floating to the left. ABOVE โ€“ Image is floating to the left.
  • 29. โ€ข Below is a screenshot of several extra images uploaded onto my webpage and are all set on floating to the right.
  • 30. โ€ข Than we can use a HTML div tag.
  • 31. HTML Div tag โ€ข Div tags can be viewed as containers as they group certain elements of a web page together. โ€ข E.G โ€“ If I wanted to upload multiple images, and each image has different border settings, image size etc.
  • 32. The image below is a screenshot of me using a div class for two images and also the floating element. One image is floating on the left and the other image floating on the right. The next slide will have valid code to make your web page like the above image.
  • 33. โ€ข Here is the code I used to have my webpage displayed like the previous slide screen shot.
  • 34. Testing โ€ข I have tested my HTML/CSS element on two popular web browsers. โ€ข Google Chrome โ€“ worked successfully โ€ข Internet Explorer โ€“ worked successfully
  • 35. What we have demonstrated in this presentation โ€ข We have learnt how to begin our HTML5 Page and connecting a CSS page. โ€ข We have shown you different web browsers you can choose to use. โ€ข How to import a image into your web page. โ€ข How to put a border around your image and select the colour of the border. โ€ข How to change the size of your image using pixels. โ€ข The different types of positioning for elements. โ€ข How to make your element float to the left or right. โ€ข What the div tag can do โ€ข A result of my testing on two different web browsers.