SlideShare a Scribd company logo
1 of 69
HTML workshop
checklist
1. background image 1280 x 1000 pixels
2. personal headshot 320 x 380 pixels
3. twitter account to create a widget
4. an image for a blog post 300 x 200 pixels
Put your directory folder onto the
desktop
should contain:
index.html
style.css
image folder (with images)
everything should be linked and working
you can download my example if you donā€™t
have one of your own

ā€¢
ā€¢
ā€¢
ā€¢
ā€¢
To create the blog we must define a
content area
1. we do this on the html document using
<div></div> tags to wrap content
To create the blog we must define a
content area
1. we do this on the html document using
<div></div> tags to wrap content
2. then we need to add an attribute to each
<div></div> tag so we can call each out
separately on our CSS doc
To create the blog we must define a
content area
1. we do this on the html document using
<div></div> tags to wrap content
2. then we need to add an attribute to each
<div></div> tag so we can call each out
separately on our CSS doc
3. <div id=ā€wrapperā€> stuff here </div>
Hereā€™s what the HTML code looks
like:
<body>
<div id=ā€wrapperā€>
Hello World!
<img src=ā€images/evanHead.jpgā€ />
</div>
</body>
Hereā€™s what the corresponding CSS
code looks like:
#wrapper {
width: 800px;

}
Hereā€™s what the corresponding CSS
code looks like:
#wrapper {
width: 800px;
margin: 0px auto;
}
Hereā€™s what the corresponding CSS
code looks like:
#wrapper {
width: 800px;
margin: 0px auto;
background-color: rgba(204, 204, 204, .8);

}
Hereā€™s what the corresponding CSS
code looks like:
#wrapper {
width: 800px;
margin: 0px auto;
background-color: rgba(204, 204, 204, .8);

border-radius: 20px;
}
Now letā€™s add more content
1. change ā€œHello Worldā€ to the name of our
blog: Race, Class, and Gender in Digital
Culture
2. Wrap our blog title in <h1></h1> tags
<h1>Race, Class, and Gender in Digital Culture</h1>
Now letā€™s style our <h1> tags on CSS
h1

{
font-family: futura, arial, san-serif;
}
Now letā€™s style our <h1> tags on CSS
h1
{
font-family: futura, arial, san-serif;
font-size: 48px;
}
Now letā€™s style our <h1> tags on CSS
h1
{
font-family: futura, arial, san-serif;
font-size: 48px;
color: #ffffff;
}
Now letā€™s style our <h1> tags on CSS
h1
{
font-family: futura, arial, san-serif;
font-size: 48px;
color: #ffffff;
text-align: center;
}
Now letā€™s style our <h1> tags on CSS
h1
{
font-family: futura, arial, san-serif;
font-size: 48px;
color: #ffffff;
text-align: center;
text-shadow: 5px 5px 5px #333333;
}
Now letā€™s add more formatting tags

ā€¢

To create nice margins, the easiest way is to
create another container inside of our <div
id=ā€wrapperā€></div>
Now letā€™s add more formatting tags
<div id=ā€wrapperā€>
<div id=ā€headerā€>
<h1>Race, Class, and Gender in Digital Culture</h1>

<img src=ā€images/evanHead.pngā€ />
</div>
</div>
Now we must style our ā€œheaderā€ div
#header {
width: 700px;
}
Now we must style our ā€œheaderā€ div
#header {
width: 700px;
margin: 0px auto;
}
Things are looking good, but...

ā€¢

We must add some formatting tags
This time wrap a <div></div> tag around
your headshot and call it something
contextual
Adding a <div id=ā€evanHeadā€>
<div id=wrapperā€
<div id=ā€headerā€>
<h1>Race, Class, and Gender in Digital Culture</h1>
<div id=ā€evanHeadā€>
<img src=ā€images/evanHead.pngā€ />
</div>
</div>
</div>
Now, letā€™s style #evanHead
#evanHead

{
width: 320px;
height: 380px;

background-color: rgba(230, 230, 230, .8);
}
Now, letā€™s style #evanHead
#evanHead
{
width: 320px;
height: 380px;
background-color: rgba(230, 230, 230, .8);
border-radius: 20px;
overflow: hidden;
}
Now letā€™s create a Twitter Widget

ā€¢

Google ā€œTwitter Widgetā€

ā€¢

Click

ā€¢

Log-in
Now letā€™s create a Twitter Widget

ā€¢

Click ā€œCreate Newā€

ā€¢

Establish specs

ā€¢

Save and create

ā€¢

Copy code
Paste embed code into index.html
<div id=ā€wrapperā€>
<div id=ā€headerā€>
<h1>Race, Class, and Gender in Digital Culture</h1>
<div id=ā€evanHeadā€
<img src=ā€images/evanHead.pngā€ />
</div>
paste twitter embed code here
</div>
</div>
Now letā€™s style our Twitter Widget

ā€¢

The code looks like craziness, so sometimes
Google is your friendā€¦
Now letā€™s style our Twitter Widget

ā€¢

ā€¢

I found this one thread that says I can style
the widget by using the ID twitter-widget-0
on my CSS.
Letā€™s try it!
Now letā€™s style our Twitter Widget
#twitter-widget-0
{
width: 340px;
height: 380px;
border-radius: 20px;
}
Thereā€™s still more to be done!

ā€¢
ā€¢

When we look at it the browser, itā€™s stacking
rather than displaying side by side.
Letā€™s change this
Try using the float
#evanHead {
width: 320px;
height: 380px;
background-color: rgba(230, 230, 230, .8);
border-radius: 20px;
overflow: hidden;
float: left;
}
Take a look...

ā€¢

Do we need to do anything else?

ā€¢

If so, what?
Take a look...

ā€¢

Add a right-side margin to #evanHead
#evanHead

{

width: 320px;
height: 380px;
background-color: rgba(230, 230, 230, .8);

border-radius: 20px;
overflow: hidden;
float: left;

margin-right: 40px;
}
Now We Can Work On Blog Articles

ā€¢

How do you think we start this process?
Now We Can Work On Blog Articles

ā€¢
ā€¢

create a new div on index.html.
we can call this div ā€œarticleOneā€
<div id=ā€articleOneā€>
</div>
Placing the articleOne <div>
<div id=ā€wrapperā€>
<div id=ā€headerā€>

<h1>Race, Class, and Gender in Digital Culture</h1>
<div id=ā€evanHeadā€
<img src=ā€images/evanHead.pngā€ />

</div>
Twitter
</div>

<div id=ā€articleOneā€>
</div>
</div>
Add content to articleOne div
<div id=ā€articleOneā€>
<img src=ā€images/futurityNow.jpgā€ />
copy text from wiki here
</div>
Now we need to style articleOne

ā€¢

Where do we start?
Now we need to style articleOne
#articleOne

{
width: 700px;
margin: 0px auto;
}
Now we need to style articleOne
#articleOne {
width: 700px;
margin: 0px auto;
background-color: rgba(230, 230, 230, .8);
}
Now we need to style articleOne
#articleOne {
width: 700px;
margin: 0px auto;
background-color: rgba(230, 230, 230, .8);
border-radius: 20px;
}
Now we need to style articleOne
#articleOne {
width: 700px;
margin: 0px auto;
background-color: rgba(230, 230, 230, .8);
border-radius: 20px;
margin-top: 40px;
}
Now we need to style articleOne

ā€¢
ā€¢

ā€¢

How do we create margins?
Create a <div></div> within article one to
create nice margins and borders (itā€™s easy!)
Call this <div id=ā€innerArticleOneā€></div>
<div id=ā€innerArticleOneā€>
<div id=ā€articleOneā€>
<div id=ā€innerArticleOneā€>
<img src=ā€images/futurityNow.jpgā€ />
copy text from wiki here
</div>
</div>
Letā€™s style innerArticleOne
#innerArticleOne
{
width: 670px;
margin: 0px auto;
}
Letā€™s Format The Article

ā€¢

Letā€™s add <p></p> tags to each paragraph
<p>
Fuchs, Christian. Internet and Society: Social Theory in the Information
Age. New York: Routledge, 2008. 105-18. Print
</p>
We Need to Get to FuturityNow

ā€¢

Can do this using a class
<img src=ā€images/futurityNow.jpgā€ class=ā€futurityā€ />
Now Letā€™s Style class=ā€futurityā€
On CSS stylesheet:
.futurity {
float: left;
}
Now Letā€™s Style class=ā€futurityā€
On CSS stylesheet:
.futurity {
float: left;
margin-top: 15px;
}
Now Letā€™s Style class=ā€futurityā€
On CSS stylesheet:
.futurity {
float: left;
margin-top: 15px;
margin-right: 15px;
}
Letā€™s add a class to our first PP

ā€¢

First paragraph:

<p class=ā€paragraphOneā€>
content
</p>
Letā€™s style <p class=ā€paragraphOneā€>
.paragraphOne
{
padding-top: 15px;
}
Format the other paragraphs
p {
text-align: justify;
}
Look at what weā€™ve done...
Letā€™s create articleTwo

ā€¢

add another <div></div>

ā€¢

what do we call it?
Letā€™s create articleTwo

ā€¢

Under the </div> for articleOne, but inside
the <div id=ā€wrapperā€> create:

<div id=ā€articleTwoā€
</div>
Letā€™s grab content for articleTwo
1. grab Prezi embed code - ideally your own,
but any will do for this example.
1. grab a paragraph of text from a reading
response.
Paste content into <div id=ā€articleTwoā€
1. Paste Prezi embed code and paragraph into
div:
<div id=ā€articleTwoā€>
Prezi code
text text
</div>
Format content
1. change Prezi width tp 100%
1. add <p></p> tags around paragraph
Styling articleTwo

ā€¢

ā€¢

Since articleTwo is similar articleOne, we
should roughly do the same things:
Add <div id=ā€innerArticleTwoā€></div>
innerArticleTwo
<div id=ā€articleTwoā€>
<div id=ā€innerARticleTwoā€
Prezi code
text text
</div>
</div>
Styling articleTwo

ā€¢

ā€¢

On CSS, copy the code for #articleOne and
#innerArticleOne
Paste below and change the name to reflect
the divs you created: #articleTwo &
#innerArticleTwo
Styling articleTwo

ā€¢
ā€¢

ā€¢

View your site
We need to add margin or padding to the
Prezi
How do we do this?
Styling articleTwo
iframe
{
margin-top: 15px;
}
Letā€™s add a few more details

ā€¢

space between article two and the wrapper?
Letā€™s add a few more details

ā€¢

space between article two and the wrapper?
#wrapper

{

width: 800px;
margin: 0px auto;
background-color: rgba(204, 204, 204, .8);
border-radius: 20px;
padding-bottom: 15px;
}
Letā€™s add a few more details

ā€¢

drop shadows on the articles?
Letā€™s add a few more details

ā€¢

drop shadows on the articles?

ā€¢

Add to the article divs
box-shadow: 5px 5px 5px #333333;

More Related Content

What's hot

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, atlantaThinkful
Ā 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSTJ Stalcup
Ā 
Next Steps in Responsive Design
Next Steps in Responsive DesignNext Steps in Responsive Design
Next Steps in Responsive DesignJustin Avery
Ā 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standardsJustin Avery
Ā 
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
Ā 
Meta tag creation
Meta tag creationMeta tag creation
Meta tag creationAniketTiwari26
Ā 
Word press course
Word press courseWord press course
Word press courseJudith Gotwald
Ā 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyAdvanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyDenise Jacobs
Ā 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4imdurgesh
Ā 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS TroubleshootingDenise Jacobs
Ā 
Customizing Your WordPress Theme Using Firebug and Basic CSS
Customizing Your WordPress Theme Using Firebug and Basic CSSCustomizing Your WordPress Theme Using Firebug and Basic CSS
Customizing Your WordPress Theme Using Firebug and Basic CSSLaura Hartwig
Ā 
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/18TJ Stalcup
Ā 
Intro to Web Development
Intro to Web DevelopmentIntro to Web Development
Intro to Web DevelopmentFrank Wu
Ā 
Bhanu pratap
Bhanu pratapBhanu pratap
Bhanu pratapdezyneecole
Ā 
Punch it Up with HTML and CSS
Punch it Up with HTML and CSSPunch it Up with HTML and CSS
Punch it Up with HTML and CSSmtlgirlgeeks
Ā 

What's hot (20)

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 - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Ā 
Next Steps in Responsive Design
Next Steps in Responsive DesignNext Steps in Responsive Design
Next Steps in Responsive Design
Ā 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
Ā 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standards
Ā 
HTML News Packages Lesson
HTML News Packages LessonHTML News Packages Lesson
HTML News Packages Lesson
Ā 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
Ā 
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)
Ā 
Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3Intro to HTML 5 / CSS 3
Intro to HTML 5 / CSS 3
Ā 
Meta tag creation
Meta tag creationMeta tag creation
Meta tag creation
Ā 
Word press course
Word press courseWord press course
Word press course
Ā 
Advanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & EfficiencyAdvanced CSS Troubleshooting & Efficiency
Advanced CSS Troubleshooting & Efficiency
Ā 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
Ā 
Advanced CSS Troubleshooting
Advanced CSS TroubleshootingAdvanced CSS Troubleshooting
Advanced CSS Troubleshooting
Ā 
Customizing Your WordPress Theme Using Firebug and Basic CSS
Customizing Your WordPress Theme Using Firebug and Basic CSSCustomizing Your WordPress Theme Using Firebug and Basic CSS
Customizing Your WordPress Theme Using Firebug and Basic CSS
Ā 
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
Ā 
Intro to Web Development
Intro to Web DevelopmentIntro to Web Development
Intro to Web Development
Ā 
Bhanu pratap
Bhanu pratapBhanu pratap
Bhanu pratap
Ā 
Jquery News Packages
Jquery News PackagesJquery News Packages
Jquery News Packages
Ā 
Punch it Up with HTML and CSS
Punch it Up with HTML and CSSPunch it Up with HTML and CSS
Punch it Up with HTML and CSS
Ā 

Similar to HTML workshop blog template

2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is nowGonzalo Cordero
Ā 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Erin M. Kidwell
Ā 
Class 3 create an absolute layout with css abs position (aptana)
Class 3  create an absolute layout with css abs position (aptana)Class 3  create an absolute layout with css abs position (aptana)
Class 3 create an absolute layout with css abs position (aptana)Erin M. Kidwell
Ā 
Source Ordered Templates - - Joomla!Days NL 2009 #jd09nl
Source Ordered Templates - - Joomla!Days NL 2009 #jd09nlSource Ordered Templates - - Joomla!Days NL 2009 #jd09nl
Source Ordered Templates - - Joomla!Days NL 2009 #jd09nlJoomla!Days Netherlands
Ā 
IML 140 Design - Basics
IML 140 Design - BasicsIML 140 Design - Basics
IML 140 Design - BasicsEvan Hughes
Ā 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
Ā 
Customizing WordPress Themes
Customizing WordPress ThemesCustomizing WordPress Themes
Customizing WordPress ThemesLaura Hartwig
Ā 
Tutorial1 - Part 2
Tutorial1 - Part 2Tutorial1 - Part 2
Tutorial1 - Part 2hstryk
Ā 
Modifying your themes design - Learning CSS - Atlanta WordPress users group
Modifying your themes design - Learning CSS - Atlanta WordPress users groupModifying your themes design - Learning CSS - Atlanta WordPress users group
Modifying your themes design - Learning CSS - Atlanta WordPress users groupEvan Mullins
Ā 
CSS Layout Tutorial
CSS Layout TutorialCSS Layout Tutorial
CSS Layout Tutorialhstryk
Ā 
Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25New Tricks
Ā 
HTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - IHTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - Ivincentleeuwen
Ā 
The web context
The web contextThe web context
The web contextDan Phiffer
Ā 
Advanced Thesis Techniques and Tricks
Advanced Thesis Techniques and TricksAdvanced Thesis Techniques and Tricks
Advanced Thesis Techniques and TricksBrad Williams
Ā 
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
Ā 
How to Create simple One Page site
How to Create simple One Page siteHow to Create simple One Page site
How to Create simple One Page siteMoneer kamal
Ā 
Gmail tutorials
Gmail tutorialsGmail tutorials
Gmail tutorialsalbert ndicho
Ā 

Similar to HTML workshop blog template (20)

2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
Ā 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
Ā 
Class 3 create an absolute layout with css abs position (aptana)
Class 3  create an absolute layout with css abs position (aptana)Class 3  create an absolute layout with css abs position (aptana)
Class 3 create an absolute layout with css abs position (aptana)
Ā 
Source Ordered Templates - - Joomla!Days NL 2009 #jd09nl
Source Ordered Templates - - Joomla!Days NL 2009 #jd09nlSource Ordered Templates - - Joomla!Days NL 2009 #jd09nl
Source Ordered Templates - - Joomla!Days NL 2009 #jd09nl
Ā 
IML 140 Design - Basics
IML 140 Design - BasicsIML 140 Design - Basics
IML 140 Design - Basics
Ā 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
Ā 
Customizing WordPress Themes
Customizing WordPress ThemesCustomizing WordPress Themes
Customizing WordPress Themes
Ā 
Tutorial1 - Part 2
Tutorial1 - Part 2Tutorial1 - Part 2
Tutorial1 - Part 2
Ā 
Modifying your themes design - Learning CSS - Atlanta WordPress users group
Modifying your themes design - Learning CSS - Atlanta WordPress users groupModifying your themes design - Learning CSS - Atlanta WordPress users group
Modifying your themes design - Learning CSS - Atlanta WordPress users group
Ā 
CSS Layout Tutorial
CSS Layout TutorialCSS Layout Tutorial
CSS Layout Tutorial
Ā 
Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25Newbies guide to customizing word press themes 25
Newbies guide to customizing word press themes 25
Ā 
Class15
Class15Class15
Class15
Ā 
HTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - IHTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - I
Ā 
The web context
The web contextThe web context
The web context
Ā 
Advanced Thesis Techniques and Tricks
Advanced Thesis Techniques and TricksAdvanced Thesis Techniques and Tricks
Advanced Thesis Techniques and Tricks
Ā 
Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.
Ā 
Rwd slidedeck
Rwd slidedeckRwd slidedeck
Rwd slidedeck
Ā 
How to Create simple One Page site
How to Create simple One Page siteHow to Create simple One Page site
How to Create simple One Page site
Ā 
Gmail tutorials
Gmail tutorialsGmail tutorials
Gmail tutorials
Ā 
Artdm171 Week5 Css
Artdm171 Week5 CssArtdm171 Week5 Css
Artdm171 Week5 Css
Ā 

More from Evan Hughes

IML 140 - The Art of the Storytelling Business
IML 140 - The Art of the Storytelling BusinessIML 140 - The Art of the Storytelling Business
IML 140 - The Art of the Storytelling BusinessEvan Hughes
Ā 
Html intro for IML 295, week 11
Html intro for IML 295, week 11Html intro for IML 295, week 11
Html intro for IML 295, week 11Evan Hughes
Ā 
Media for business_commercials
Media for business_commercialsMedia for business_commercials
Media for business_commercialsEvan Hughes
Ā 
I ml 140 digital media for business - final week
I ml 140  digital media for business - final weekI ml 140  digital media for business - final week
I ml 140 digital media for business - final weekEvan Hughes
Ā 
Design and presenting with slides
Design and presenting with slidesDesign and presenting with slides
Design and presenting with slidesEvan Hughes
Ā 
Iml140 web week_1
Iml140 web week_1Iml140 web week_1
Iml140 web week_1Evan Hughes
Ā 
Dreamweaver Template
Dreamweaver TemplateDreamweaver Template
Dreamweaver TemplateEvan Hughes
Ā 
Iml140 cs sbasics_week5
Iml140 cs sbasics_week5Iml140 cs sbasics_week5
Iml140 cs sbasics_week5Evan Hughes
Ā 
Week 4 css basics
Week 4 css basicsWeek 4 css basics
Week 4 css basicsEvan Hughes
Ā 
Word Press Site
Word Press SiteWord Press Site
Word Press SiteEvan Hughes
Ā 
Html basics IML 140 (weeks 2-3)
Html basics IML 140 (weeks 2-3)Html basics IML 140 (weeks 2-3)
Html basics IML 140 (weeks 2-3)Evan Hughes
Ā 
Web and creative cultures week 2
Web and creative cultures week 2Web and creative cultures week 2
Web and creative cultures week 2Evan Hughes
Ā 
Web and creative cultures week 2
Web and creative cultures week 2Web and creative cultures week 2
Web and creative cultures week 2Evan Hughes
Ā 
Dreamweaver template
Dreamweaver templateDreamweaver template
Dreamweaver templateEvan Hughes
Ā 
Remixand culture
Remixand cultureRemixand culture
Remixand cultureEvan Hughes
Ā 
Mobile design patterns
Mobile design patternsMobile design patterns
Mobile design patternsEvan Hughes
Ā 
Weeks3 5 cs_sbasics
Weeks3 5 cs_sbasicsWeeks3 5 cs_sbasics
Weeks3 5 cs_sbasicsEvan Hughes
Ā 
Color Theory Basics
Color Theory BasicsColor Theory Basics
Color Theory BasicsEvan Hughes
Ā 
Iml 295 week
Iml 295 weekIml 295 week
Iml 295 weekEvan Hughes
Ā 
Iml140 web week_1
Iml140 web week_1Iml140 web week_1
Iml140 web week_1Evan Hughes
Ā 

More from Evan Hughes (20)

IML 140 - The Art of the Storytelling Business
IML 140 - The Art of the Storytelling BusinessIML 140 - The Art of the Storytelling Business
IML 140 - The Art of the Storytelling Business
Ā 
Html intro for IML 295, week 11
Html intro for IML 295, week 11Html intro for IML 295, week 11
Html intro for IML 295, week 11
Ā 
Media for business_commercials
Media for business_commercialsMedia for business_commercials
Media for business_commercials
Ā 
I ml 140 digital media for business - final week
I ml 140  digital media for business - final weekI ml 140  digital media for business - final week
I ml 140 digital media for business - final week
Ā 
Design and presenting with slides
Design and presenting with slidesDesign and presenting with slides
Design and presenting with slides
Ā 
Iml140 web week_1
Iml140 web week_1Iml140 web week_1
Iml140 web week_1
Ā 
Dreamweaver Template
Dreamweaver TemplateDreamweaver Template
Dreamweaver Template
Ā 
Iml140 cs sbasics_week5
Iml140 cs sbasics_week5Iml140 cs sbasics_week5
Iml140 cs sbasics_week5
Ā 
Week 4 css basics
Week 4 css basicsWeek 4 css basics
Week 4 css basics
Ā 
Word Press Site
Word Press SiteWord Press Site
Word Press Site
Ā 
Html basics IML 140 (weeks 2-3)
Html basics IML 140 (weeks 2-3)Html basics IML 140 (weeks 2-3)
Html basics IML 140 (weeks 2-3)
Ā 
Web and creative cultures week 2
Web and creative cultures week 2Web and creative cultures week 2
Web and creative cultures week 2
Ā 
Web and creative cultures week 2
Web and creative cultures week 2Web and creative cultures week 2
Web and creative cultures week 2
Ā 
Dreamweaver template
Dreamweaver templateDreamweaver template
Dreamweaver template
Ā 
Remixand culture
Remixand cultureRemixand culture
Remixand culture
Ā 
Mobile design patterns
Mobile design patternsMobile design patterns
Mobile design patterns
Ā 
Weeks3 5 cs_sbasics
Weeks3 5 cs_sbasicsWeeks3 5 cs_sbasics
Weeks3 5 cs_sbasics
Ā 
Color Theory Basics
Color Theory BasicsColor Theory Basics
Color Theory Basics
Ā 
Iml 295 week
Iml 295 weekIml 295 week
Iml 295 week
Ā 
Iml140 web week_1
Iml140 web week_1Iml140 web week_1
Iml140 web week_1
Ā 

Recently uploaded

Call Girls in Friends Colony 9711199171 Delhi Enjoy Call Girls With Our Escorts
Call Girls in Friends Colony 9711199171 Delhi Enjoy Call Girls With Our EscortsCall Girls in Friends Colony 9711199171 Delhi Enjoy Call Girls With Our Escorts
Call Girls in Friends Colony 9711199171 Delhi Enjoy Call Girls With Our Escortsindian call girls near you
Ā 
Call Girls šŸ«¤ Mukherjee Nagar āž”ļø 9999965857 āž”ļø Delhi šŸ«¦ Russian Escorts FULL ...
Call Girls šŸ«¤ Mukherjee Nagar āž”ļø 9999965857  āž”ļø Delhi šŸ«¦  Russian Escorts FULL ...Call Girls šŸ«¤ Mukherjee Nagar āž”ļø 9999965857  āž”ļø Delhi šŸ«¦  Russian Escorts FULL ...
Call Girls šŸ«¤ Mukherjee Nagar āž”ļø 9999965857 āž”ļø Delhi šŸ«¦ Russian Escorts FULL ...Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
Ā 
VIP 7001035870 Find & Meet Hyderabad Call Girls Banjara Hills high-profile Ca...
VIP 7001035870 Find & Meet Hyderabad Call Girls Banjara Hills high-profile Ca...VIP 7001035870 Find & Meet Hyderabad Call Girls Banjara Hills high-profile Ca...
VIP 7001035870 Find & Meet Hyderabad Call Girls Banjara Hills high-profile Ca...aditipandeya
Ā 
VIP 7001035870 Find & Meet Hyderabad Call Girls Miyapur high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls Miyapur high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls Miyapur high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls Miyapur high-profile Call Girladitipandeya
Ā 
Call Girls In Amritsar šŸ’ÆCall Us šŸ” 76967 34778šŸ” šŸ’ƒ Independent Escort In Amritsar
Call Girls In Amritsar šŸ’ÆCall Us šŸ” 76967 34778šŸ” šŸ’ƒ Independent Escort In AmritsarCall Girls In Amritsar šŸ’ÆCall Us šŸ” 76967 34778šŸ” šŸ’ƒ Independent Escort In Amritsar
Call Girls In Amritsar šŸ’ÆCall Us šŸ” 76967 34778šŸ” šŸ’ƒ Independent Escort In Amritsaronly4webmaster01
Ā 
SME IPO and sme ipo listing consultants .pptx
SME IPO and sme ipo listing consultants .pptxSME IPO and sme ipo listing consultants .pptx
SME IPO and sme ipo listing consultants .pptxindia IPO
Ā 
Editing progress 20th march.docxxxxxxxxx
Editing progress 20th march.docxxxxxxxxxEditing progress 20th march.docxxxxxxxxx
Editing progress 20th march.docxxxxxxxxxMollyBrown86
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Fazullaganj Lucknow best sexual service
CALL ON āž„8923113531 šŸ”Call Girls Fazullaganj Lucknow best sexual serviceCALL ON āž„8923113531 šŸ”Call Girls Fazullaganj Lucknow best sexual service
CALL ON āž„8923113531 šŸ”Call Girls Fazullaganj Lucknow best sexual serviceanilsa9823
Ā 
Teck Investor Presentation, April 24, 2024
Teck Investor Presentation, April 24, 2024Teck Investor Presentation, April 24, 2024
Teck Investor Presentation, April 24, 2024TeckResourcesLtd
Ā 
BDSMāš”Call Girls in Hari Nagar Delhi >ą¼’8448380779 Escort Service
BDSMāš”Call Girls in Hari Nagar Delhi >ą¼’8448380779 Escort ServiceBDSMāš”Call Girls in Hari Nagar Delhi >ą¼’8448380779 Escort Service
BDSMāš”Call Girls in Hari Nagar Delhi >ą¼’8448380779 Escort ServiceDelhi Call girls
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Vineet Khand Lucknow best Night Fun service šŸ§¦
CALL ON āž„8923113531 šŸ”Call Girls Vineet Khand Lucknow best Night Fun service  šŸ§¦CALL ON āž„8923113531 šŸ”Call Girls Vineet Khand Lucknow best Night Fun service  šŸ§¦
CALL ON āž„8923113531 šŸ”Call Girls Vineet Khand Lucknow best Night Fun service šŸ§¦anilsa9823
Ā 
Corporate Presentation Probe May 2024.pdf
Corporate Presentation Probe May 2024.pdfCorporate Presentation Probe May 2024.pdf
Corporate Presentation Probe May 2024.pdfProbe Gold
Ā 
Top Rated Call Girls In Podanur šŸ“± {7001035870} VIP Escorts Podanur
Top Rated Call Girls In Podanur šŸ“± {7001035870} VIP Escorts PodanurTop Rated Call Girls In Podanur šŸ“± {7001035870} VIP Escorts Podanur
Top Rated Call Girls In Podanur šŸ“± {7001035870} VIP Escorts Podanurdharasingh5698
Ā 
(šŸ‘‰ļ¾Ÿ9999965857 ļ¾Ÿ)šŸ‘‰ VIP Call Girls Friends Colony šŸ‘‰ Delhi šŸ‘ˆ : 9999 Cash Payment...
(šŸ‘‰ļ¾Ÿ9999965857 ļ¾Ÿ)šŸ‘‰ VIP Call Girls Friends Colony šŸ‘‰ Delhi šŸ‘ˆ : 9999 Cash Payment...(šŸ‘‰ļ¾Ÿ9999965857 ļ¾Ÿ)šŸ‘‰ VIP Call Girls Friends Colony šŸ‘‰ Delhi šŸ‘ˆ : 9999 Cash Payment...
(šŸ‘‰ļ¾Ÿ9999965857 ļ¾Ÿ)šŸ‘‰ VIP Call Girls Friends Colony šŸ‘‰ Delhi šŸ‘ˆ : 9999 Cash Payment...Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
Ā 

Recently uploaded (20)

Call Girls in Friends Colony 9711199171 Delhi Enjoy Call Girls With Our Escorts
Call Girls in Friends Colony 9711199171 Delhi Enjoy Call Girls With Our EscortsCall Girls in Friends Colony 9711199171 Delhi Enjoy Call Girls With Our Escorts
Call Girls in Friends Colony 9711199171 Delhi Enjoy Call Girls With Our Escorts
Ā 
Call Girls šŸ«¤ Mukherjee Nagar āž”ļø 9999965857 āž”ļø Delhi šŸ«¦ Russian Escorts FULL ...
Call Girls šŸ«¤ Mukherjee Nagar āž”ļø 9999965857  āž”ļø Delhi šŸ«¦  Russian Escorts FULL ...Call Girls šŸ«¤ Mukherjee Nagar āž”ļø 9999965857  āž”ļø Delhi šŸ«¦  Russian Escorts FULL ...
Call Girls šŸ«¤ Mukherjee Nagar āž”ļø 9999965857 āž”ļø Delhi šŸ«¦ Russian Escorts FULL ...
Ā 
VIP 7001035870 Find & Meet Hyderabad Call Girls Banjara Hills high-profile Ca...
VIP 7001035870 Find & Meet Hyderabad Call Girls Banjara Hills high-profile Ca...VIP 7001035870 Find & Meet Hyderabad Call Girls Banjara Hills high-profile Ca...
VIP 7001035870 Find & Meet Hyderabad Call Girls Banjara Hills high-profile Ca...
Ā 
Call Girls In Vasant Kunj šŸ“± 9999965857 šŸ¤© Delhi šŸ«¦ HOT AND SEXY VVIP šŸŽ SERVICE
Call Girls In Vasant Kunj šŸ“±  9999965857  šŸ¤© Delhi šŸ«¦ HOT AND SEXY VVIP šŸŽ SERVICECall Girls In Vasant Kunj šŸ“±  9999965857  šŸ¤© Delhi šŸ«¦ HOT AND SEXY VVIP šŸŽ SERVICE
Call Girls In Vasant Kunj šŸ“± 9999965857 šŸ¤© Delhi šŸ«¦ HOT AND SEXY VVIP šŸŽ SERVICE
Ā 
Call Girls Service Green Park @9999965857 Delhi šŸ«¦ No Advance VVIP šŸŽ SERVICE
Call Girls Service Green Park @9999965857 Delhi šŸ«¦ No Advance  VVIP šŸŽ SERVICECall Girls Service Green Park @9999965857 Delhi šŸ«¦ No Advance  VVIP šŸŽ SERVICE
Call Girls Service Green Park @9999965857 Delhi šŸ«¦ No Advance VVIP šŸŽ SERVICE
Ā 
VIP 7001035870 Find & Meet Hyderabad Call Girls Miyapur high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls Miyapur high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls Miyapur high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls Miyapur high-profile Call Girl
Ā 
Call Girls In Amritsar šŸ’ÆCall Us šŸ” 76967 34778šŸ” šŸ’ƒ Independent Escort In Amritsar
Call Girls In Amritsar šŸ’ÆCall Us šŸ” 76967 34778šŸ” šŸ’ƒ Independent Escort In AmritsarCall Girls In Amritsar šŸ’ÆCall Us šŸ” 76967 34778šŸ” šŸ’ƒ Independent Escort In Amritsar
Call Girls In Amritsar šŸ’ÆCall Us šŸ” 76967 34778šŸ” šŸ’ƒ Independent Escort In Amritsar
Ā 
@9999965857 šŸ«¦ Sexy Desi Call Girls Karol Bagh šŸ’“ High Profile Escorts Delhi šŸ«¶
@9999965857 šŸ«¦ Sexy Desi Call Girls Karol Bagh šŸ’“ High Profile Escorts Delhi šŸ«¶@9999965857 šŸ«¦ Sexy Desi Call Girls Karol Bagh šŸ’“ High Profile Escorts Delhi šŸ«¶
@9999965857 šŸ«¦ Sexy Desi Call Girls Karol Bagh šŸ’“ High Profile Escorts Delhi šŸ«¶
Ā 
SME IPO and sme ipo listing consultants .pptx
SME IPO and sme ipo listing consultants .pptxSME IPO and sme ipo listing consultants .pptx
SME IPO and sme ipo listing consultants .pptx
Ā 
Vip Call Girls Vasant Kunj āž”ļø Delhi āž”ļø 9999965857 No Advance 24HRS Live
Vip Call Girls Vasant Kunj āž”ļø Delhi āž”ļø 9999965857 No Advance 24HRS LiveVip Call Girls Vasant Kunj āž”ļø Delhi āž”ļø 9999965857 No Advance 24HRS Live
Vip Call Girls Vasant Kunj āž”ļø Delhi āž”ļø 9999965857 No Advance 24HRS Live
Ā 
Editing progress 20th march.docxxxxxxxxx
Editing progress 20th march.docxxxxxxxxxEditing progress 20th march.docxxxxxxxxx
Editing progress 20th march.docxxxxxxxxx
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Fazullaganj Lucknow best sexual service
CALL ON āž„8923113531 šŸ”Call Girls Fazullaganj Lucknow best sexual serviceCALL ON āž„8923113531 šŸ”Call Girls Fazullaganj Lucknow best sexual service
CALL ON āž„8923113531 šŸ”Call Girls Fazullaganj Lucknow best sexual service
Ā 
Vip Call Girls Hauz Khas āž”ļø Delhi āž”ļø 9999965857 No Advance 24HRS Live
Vip Call Girls Hauz Khas āž”ļø Delhi āž”ļø 9999965857 No Advance 24HRS LiveVip Call Girls Hauz Khas āž”ļø Delhi āž”ļø 9999965857 No Advance 24HRS Live
Vip Call Girls Hauz Khas āž”ļø Delhi āž”ļø 9999965857 No Advance 24HRS Live
Ā 
Teck Investor Presentation, April 24, 2024
Teck Investor Presentation, April 24, 2024Teck Investor Presentation, April 24, 2024
Teck Investor Presentation, April 24, 2024
Ā 
BDSMāš”Call Girls in Hari Nagar Delhi >ą¼’8448380779 Escort Service
BDSMāš”Call Girls in Hari Nagar Delhi >ą¼’8448380779 Escort ServiceBDSMāš”Call Girls in Hari Nagar Delhi >ą¼’8448380779 Escort Service
BDSMāš”Call Girls in Hari Nagar Delhi >ą¼’8448380779 Escort Service
Ā 
CALL ON āž„8923113531 šŸ”Call Girls Vineet Khand Lucknow best Night Fun service šŸ§¦
CALL ON āž„8923113531 šŸ”Call Girls Vineet Khand Lucknow best Night Fun service  šŸ§¦CALL ON āž„8923113531 šŸ”Call Girls Vineet Khand Lucknow best Night Fun service  šŸ§¦
CALL ON āž„8923113531 šŸ”Call Girls Vineet Khand Lucknow best Night Fun service šŸ§¦
Ā 
Corporate Presentation Probe May 2024.pdf
Corporate Presentation Probe May 2024.pdfCorporate Presentation Probe May 2024.pdf
Corporate Presentation Probe May 2024.pdf
Ā 
Top Rated Call Girls In Podanur šŸ“± {7001035870} VIP Escorts Podanur
Top Rated Call Girls In Podanur šŸ“± {7001035870} VIP Escorts PodanurTop Rated Call Girls In Podanur šŸ“± {7001035870} VIP Escorts Podanur
Top Rated Call Girls In Podanur šŸ“± {7001035870} VIP Escorts Podanur
Ā 
(šŸ‘‰ļ¾Ÿ9999965857 ļ¾Ÿ)šŸ‘‰ VIP Call Girls Friends Colony šŸ‘‰ Delhi šŸ‘ˆ : 9999 Cash Payment...
(šŸ‘‰ļ¾Ÿ9999965857 ļ¾Ÿ)šŸ‘‰ VIP Call Girls Friends Colony šŸ‘‰ Delhi šŸ‘ˆ : 9999 Cash Payment...(šŸ‘‰ļ¾Ÿ9999965857 ļ¾Ÿ)šŸ‘‰ VIP Call Girls Friends Colony šŸ‘‰ Delhi šŸ‘ˆ : 9999 Cash Payment...
(šŸ‘‰ļ¾Ÿ9999965857 ļ¾Ÿ)šŸ‘‰ VIP Call Girls Friends Colony šŸ‘‰ Delhi šŸ‘ˆ : 9999 Cash Payment...
Ā 
Rohini Sector 17 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 17 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 17 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 17 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Ā 

HTML workshop blog template

  • 1. HTML workshop checklist 1. background image 1280 x 1000 pixels 2. personal headshot 320 x 380 pixels 3. twitter account to create a widget 4. an image for a blog post 300 x 200 pixels
  • 2. Put your directory folder onto the desktop should contain: index.html style.css image folder (with images) everything should be linked and working you can download my example if you donā€™t have one of your own ā€¢ ā€¢ ā€¢ ā€¢ ā€¢
  • 3. To create the blog we must define a content area 1. we do this on the html document using <div></div> tags to wrap content
  • 4. To create the blog we must define a content area 1. we do this on the html document using <div></div> tags to wrap content 2. then we need to add an attribute to each <div></div> tag so we can call each out separately on our CSS doc
  • 5. To create the blog we must define a content area 1. we do this on the html document using <div></div> tags to wrap content 2. then we need to add an attribute to each <div></div> tag so we can call each out separately on our CSS doc 3. <div id=ā€wrapperā€> stuff here </div>
  • 6. Hereā€™s what the HTML code looks like: <body> <div id=ā€wrapperā€> Hello World! <img src=ā€images/evanHead.jpgā€ /> </div> </body>
  • 7. Hereā€™s what the corresponding CSS code looks like: #wrapper { width: 800px; }
  • 8. Hereā€™s what the corresponding CSS code looks like: #wrapper { width: 800px; margin: 0px auto; }
  • 9. Hereā€™s what the corresponding CSS code looks like: #wrapper { width: 800px; margin: 0px auto; background-color: rgba(204, 204, 204, .8); }
  • 10. Hereā€™s what the corresponding CSS code looks like: #wrapper { width: 800px; margin: 0px auto; background-color: rgba(204, 204, 204, .8); border-radius: 20px; }
  • 11. Now letā€™s add more content 1. change ā€œHello Worldā€ to the name of our blog: Race, Class, and Gender in Digital Culture 2. Wrap our blog title in <h1></h1> tags <h1>Race, Class, and Gender in Digital Culture</h1>
  • 12. Now letā€™s style our <h1> tags on CSS h1 { font-family: futura, arial, san-serif; }
  • 13. Now letā€™s style our <h1> tags on CSS h1 { font-family: futura, arial, san-serif; font-size: 48px; }
  • 14. Now letā€™s style our <h1> tags on CSS h1 { font-family: futura, arial, san-serif; font-size: 48px; color: #ffffff; }
  • 15. Now letā€™s style our <h1> tags on CSS h1 { font-family: futura, arial, san-serif; font-size: 48px; color: #ffffff; text-align: center; }
  • 16. Now letā€™s style our <h1> tags on CSS h1 { font-family: futura, arial, san-serif; font-size: 48px; color: #ffffff; text-align: center; text-shadow: 5px 5px 5px #333333; }
  • 17. Now letā€™s add more formatting tags ā€¢ To create nice margins, the easiest way is to create another container inside of our <div id=ā€wrapperā€></div>
  • 18. Now letā€™s add more formatting tags <div id=ā€wrapperā€> <div id=ā€headerā€> <h1>Race, Class, and Gender in Digital Culture</h1> <img src=ā€images/evanHead.pngā€ /> </div> </div>
  • 19. Now we must style our ā€œheaderā€ div #header { width: 700px; }
  • 20. Now we must style our ā€œheaderā€ div #header { width: 700px; margin: 0px auto; }
  • 21. Things are looking good, but... ā€¢ We must add some formatting tags This time wrap a <div></div> tag around your headshot and call it something contextual
  • 22. Adding a <div id=ā€evanHeadā€> <div id=wrapperā€ <div id=ā€headerā€> <h1>Race, Class, and Gender in Digital Culture</h1> <div id=ā€evanHeadā€> <img src=ā€images/evanHead.pngā€ /> </div> </div> </div>
  • 23. Now, letā€™s style #evanHead #evanHead { width: 320px; height: 380px; background-color: rgba(230, 230, 230, .8); }
  • 24. Now, letā€™s style #evanHead #evanHead { width: 320px; height: 380px; background-color: rgba(230, 230, 230, .8); border-radius: 20px; overflow: hidden; }
  • 25. Now letā€™s create a Twitter Widget ā€¢ Google ā€œTwitter Widgetā€ ā€¢ Click ā€¢ Log-in
  • 26. Now letā€™s create a Twitter Widget ā€¢ Click ā€œCreate Newā€ ā€¢ Establish specs ā€¢ Save and create ā€¢ Copy code
  • 27. Paste embed code into index.html <div id=ā€wrapperā€> <div id=ā€headerā€> <h1>Race, Class, and Gender in Digital Culture</h1> <div id=ā€evanHeadā€ <img src=ā€images/evanHead.pngā€ /> </div> paste twitter embed code here </div> </div>
  • 28. Now letā€™s style our Twitter Widget ā€¢ The code looks like craziness, so sometimes Google is your friendā€¦
  • 29. Now letā€™s style our Twitter Widget ā€¢ ā€¢ I found this one thread that says I can style the widget by using the ID twitter-widget-0 on my CSS. Letā€™s try it!
  • 30. Now letā€™s style our Twitter Widget #twitter-widget-0 { width: 340px; height: 380px; border-radius: 20px; }
  • 31. Thereā€™s still more to be done! ā€¢ ā€¢ When we look at it the browser, itā€™s stacking rather than displaying side by side. Letā€™s change this
  • 32. Try using the float #evanHead { width: 320px; height: 380px; background-color: rgba(230, 230, 230, .8); border-radius: 20px; overflow: hidden; float: left; }
  • 33. Take a look... ā€¢ Do we need to do anything else? ā€¢ If so, what?
  • 34. Take a look... ā€¢ Add a right-side margin to #evanHead #evanHead { width: 320px; height: 380px; background-color: rgba(230, 230, 230, .8); border-radius: 20px; overflow: hidden; float: left; margin-right: 40px; }
  • 35. Now We Can Work On Blog Articles ā€¢ How do you think we start this process?
  • 36. Now We Can Work On Blog Articles ā€¢ ā€¢ create a new div on index.html. we can call this div ā€œarticleOneā€ <div id=ā€articleOneā€> </div>
  • 37. Placing the articleOne <div> <div id=ā€wrapperā€> <div id=ā€headerā€> <h1>Race, Class, and Gender in Digital Culture</h1> <div id=ā€evanHeadā€ <img src=ā€images/evanHead.pngā€ /> </div> Twitter </div> <div id=ā€articleOneā€> </div> </div>
  • 38. Add content to articleOne div <div id=ā€articleOneā€> <img src=ā€images/futurityNow.jpgā€ /> copy text from wiki here </div>
  • 39. Now we need to style articleOne ā€¢ Where do we start?
  • 40. Now we need to style articleOne #articleOne { width: 700px; margin: 0px auto; }
  • 41. Now we need to style articleOne #articleOne { width: 700px; margin: 0px auto; background-color: rgba(230, 230, 230, .8); }
  • 42. Now we need to style articleOne #articleOne { width: 700px; margin: 0px auto; background-color: rgba(230, 230, 230, .8); border-radius: 20px; }
  • 43. Now we need to style articleOne #articleOne { width: 700px; margin: 0px auto; background-color: rgba(230, 230, 230, .8); border-radius: 20px; margin-top: 40px; }
  • 44. Now we need to style articleOne ā€¢ ā€¢ ā€¢ How do we create margins? Create a <div></div> within article one to create nice margins and borders (itā€™s easy!) Call this <div id=ā€innerArticleOneā€></div>
  • 45. <div id=ā€innerArticleOneā€> <div id=ā€articleOneā€> <div id=ā€innerArticleOneā€> <img src=ā€images/futurityNow.jpgā€ /> copy text from wiki here </div> </div>
  • 47. Letā€™s Format The Article ā€¢ Letā€™s add <p></p> tags to each paragraph <p> Fuchs, Christian. Internet and Society: Social Theory in the Information Age. New York: Routledge, 2008. 105-18. Print </p>
  • 48. We Need to Get to FuturityNow ā€¢ Can do this using a class <img src=ā€images/futurityNow.jpgā€ class=ā€futurityā€ />
  • 49. Now Letā€™s Style class=ā€futurityā€ On CSS stylesheet: .futurity { float: left; }
  • 50. Now Letā€™s Style class=ā€futurityā€ On CSS stylesheet: .futurity { float: left; margin-top: 15px; }
  • 51. Now Letā€™s Style class=ā€futurityā€ On CSS stylesheet: .futurity { float: left; margin-top: 15px; margin-right: 15px; }
  • 52. Letā€™s add a class to our first PP ā€¢ First paragraph: <p class=ā€paragraphOneā€> content </p>
  • 53. Letā€™s style <p class=ā€paragraphOneā€> .paragraphOne { padding-top: 15px; }
  • 54. Format the other paragraphs p { text-align: justify; }
  • 55. Look at what weā€™ve done...
  • 56. Letā€™s create articleTwo ā€¢ add another <div></div> ā€¢ what do we call it?
  • 57. Letā€™s create articleTwo ā€¢ Under the </div> for articleOne, but inside the <div id=ā€wrapperā€> create: <div id=ā€articleTwoā€ </div>
  • 58. Letā€™s grab content for articleTwo 1. grab Prezi embed code - ideally your own, but any will do for this example. 1. grab a paragraph of text from a reading response.
  • 59. Paste content into <div id=ā€articleTwoā€ 1. Paste Prezi embed code and paragraph into div: <div id=ā€articleTwoā€> Prezi code text text </div>
  • 60. Format content 1. change Prezi width tp 100% 1. add <p></p> tags around paragraph
  • 61. Styling articleTwo ā€¢ ā€¢ Since articleTwo is similar articleOne, we should roughly do the same things: Add <div id=ā€innerArticleTwoā€></div>
  • 63. Styling articleTwo ā€¢ ā€¢ On CSS, copy the code for #articleOne and #innerArticleOne Paste below and change the name to reflect the divs you created: #articleTwo & #innerArticleTwo
  • 64. Styling articleTwo ā€¢ ā€¢ ā€¢ View your site We need to add margin or padding to the Prezi How do we do this?
  • 66. Letā€™s add a few more details ā€¢ space between article two and the wrapper?
  • 67. Letā€™s add a few more details ā€¢ space between article two and the wrapper? #wrapper { width: 800px; margin: 0px auto; background-color: rgba(204, 204, 204, .8); border-radius: 20px; padding-bottom: 15px; }
  • 68. Letā€™s add a few more details ā€¢ drop shadows on the articles?
  • 69. Letā€™s add a few more details ā€¢ drop shadows on the articles? ā€¢ Add to the article divs box-shadow: 5px 5px 5px #333333;