SlideShare a Scribd company logo
HTML CSS	
Online News Packages
Review
HTML
CSS
JavaScript
HTML
CSS
JavaScript

Content (tags)
HTML
CSS
JavaScript

Content (tags)
Form (styles)
HTML
CSS
JavaScript

Content (tags)
Form (styles)
Function (code)
HTML Review

<h1>

</h1>
an HTML tag
HTML Review

<h1 id="title" >
an HTML tag
an attribute
Three attributes we will be using a lot:
id="some_identifier"
class="some_grouping"
style="size:14px; margin:0;"
Three attributes we will be using a lot:
id="some_identifier"
class="some_grouping"
style="size:14px; margin:0;"
Three attributes we will be using a lot:
id="some_identifier"
class="some_grouping"
style="size:14px; margin:0;"
Three attributes we will be using a lot:
id="some_identifier"
class="some_grouping"
style="size:14px; margin:0;"
ID Attribute
<h1	
  id="title">This is a title</h1>
<h2	
  id="subhead">This is a subhead</h2>
<p	
  id="part1">This is a paragraph describing
something important. I've given it an identifier.</p>
<p	
  id="part2">This is another paragraph.</p>
ID Attribute
<h1	
  id="title">This is a title</h1>
<h2	
  id="subhead">This is a subhead</h2>
<p	
  id="part1">This is a paragraph describing
something important. I've given it an identifier.</p>
<p	
  id="part2">This is another paragraph.</p>
<style>	
  
#title{	
  font-­‐size:	
  20px;	
  }	
  
#subhead{	
  font-­‐size:	
  30px;	
  }	
  
#part1{	
  font-­‐size:	
  22px;	
  }	
  
</style>
ID Attribute
<h1	
  id="title">This is a title</h1>
<h2	
  id="subhead">This is a subhead</h2>
<p	
  id="part1">This is a paragraph describing
something important. I've given it an identifier.</p>
<p	
  id="part2">This is another paragraph.</p>
<style>	
  
#title{	
  font-­‐size:	
  20px;	
  }	
  
#subhead{	
  font-­‐size:	
  30px;	
  }	
  
#part1{	
  font-­‐size:	
  22px;	
  }	
  
</style>
ID Selector for CSS
#someid{	
  
!

font-­‐size:	
  40px;	
  
!

}
ID Selector for CSS
#someid{	
  
!

font-­‐size:	
  40px;	
  
!

}
ID Selector for CSS
#someid{	
  
!

font-­‐size:	
  40px;	
  
!

}
ID Selector for CSS
#someid{	
  
!

font-­‐size:	
  40px;	
  
!

}
ID Selector for CSS
#someid{	
  
!

font-­‐size:	
  40px;	
  
!

}
ID Selector for CSS
#someid{	
  
!

font-­‐size:	
  40px;	
  
!

}
ID Selector for CSS
#someid{	
  
!

font-­‐size:	
  40px;	
  
!

}
CSS goes in the <style> tag
<script>	
  
!

#some_id1{	
  
font-­‐size:22px;	
  
}	
  
!

#some_id2{	
  
font-­‐size:35px;	
  
}	
  
!

</script>
CSS goes in the <style> tag
<script>	
  
!

#some_id1{	
  
font-­‐size:22px;	
  
}	
  
!

#some_id2{	
  
font-­‐size:35px;	
  
}	
  
!

</script>
Exercise
Step 1
In your text-editing app, create three
headlines as <h2> tags. They should be: 

!

"My favorite movie" 

"My favorite restaurant" and 

"My favorite hobby"
Step 2

Give each h2 header a unique ID
attribute.
Answer so far

<h2	
  id="movie">My favorite movie</h2>

<h2	
  id="food">My favorite restaurant</h2>

<h2	
  id="hobby">My favorite hobby</h2>
Step 3

Create a pair of <style> tags
(opening and closing) above
everything else you just typed.
Answer so far

<style>	
  
!

</style>
Step 4

Using the pound-sign selector, type
CSS code to adjust the font-­‐size for
each headline so that they are all
different sizes.
Answer
<style>	
  
#movie{	
  
font-­‐size:	
  30px;	
  
}	
  
#food{	
  
font-­‐size:	
  22px;	
  
}	
  
</style>	
  
<h2	
  id="movie">My favorite movie</h2>

<h2	
  id="food">My favorite restaurant</h2>

<h2	
  id="hobby">My favorite hobby</h2>
Class attribute in HTML

<h1>

</h1>
Class attribute in HTML

<h1 class="name">
Class Selector for CSS
.name{	
  
!

font-­‐size:	
  40px;	
  
!

}
Class Selector for CSS
.name{	
  
!

font-­‐size:	
  40px;	
  
!

}
Class Selector for CSS
.name{	
  
!

font-­‐size:	
  40px;	
  
!

}
Class Selector for CSS
.name{	
  
!

font-­‐size:	
  40px;	
  
!

}
Class Selector for CSS
.name{	
  
!

font-­‐size:	
  40px;	
  
!

}
Class Selector for CSS
.name{	
  
!

font-­‐size:	
  40px;	
  
!

}
Class Selector for CSS
.name{	
  
!

font-­‐size:	
  40px;	
  
!

}
Exercise
Step 1
Give two of your <h2> tags the same
class attribute.
!

Hint: Tags can have both an id and a
class attribute!
Answer so far

<h2	
  id="movie"	
  class="fun">My favorite movie</h2>

<h2	
  id="food"	
  class="fun">My favorite restaurant</h2>

<h2	
  id="hobby">My favorite hobby</h2>
Step 2
Add a single CSS class to your style tag
and set the color property to red.

!

Hint: look at how you did the ID, and
use the same format.
Answer
<style>	
  
!

.fun{	
  
!

color:	
  red;	
  
!

}	
  
!
!

</style>
Let's add some more properties
Try adding a few more properties to either
individual tags, or to the class.

!

border:	
  1px	
  solid	
  black;	
  
background:	
  green;	
  
background:	
  url('http://placekitten.com/200/');
Inline CSS

<h2 style="color:red;"> </h2>

style attribute
Exercise
Write some CSS directly in the h2 tag.

!

Create a style attribute where the style
sets the color property to blue.

!

Take note, if it contradicts your CSS in
your <style> tag, this takes precedence.
Answer so far

<h2	
  id="movie"	
  class="fun">My favorite movie</h2>

<h2	
  id="food"	
  class="fun">My favorite restaurant</h2>

<h2	
  id="hobby"	
  style="color:blue;">My favorite
hobby</h2>
Answer so far

<h2	
  id="movie"	
  class="fun">My favorite movie</h2>

<h2	
  id="food"	
  class="fun">My favorite restaurant</h2>

<h2	
  id="hobby"	
  style="color:blue;">My favorite
hobby</h2>
Pop Quiz
What's the pound symbol for?
What's the pound symbol for?

Signifies an ID sector
What CSS selector uses the period?
What CSS selector uses the period?

A class selector
Which selector would I use if I wanted
to style multiple items in my news
package at once?
Which selector would I use if I wanted
to style multiple items in my news
package at once?

A class selector
Explain the difference between a
class selector and ID selector
Explain the difference between a
class selector and ID selector

IDs are used to reference one
unique tag.
!

Classes are used to reference
multiple tags at once.
Recap
Three Attributes:
Recap
Three Attributes:
ID attribute: Give each tag a unique
identifier, so we can reference it in CSS.
Recap
Three Attributes:
ID attribute: Give each tag a unique
identifier, so we can reference it in CSS.
CLASS attribute: Give groups of tags a
class name, so we can reference it in CSS.
Recap
Three Attributes:
ID attribute: Give each tag a unique
identifier, so we can reference it in CSS.
CLASS attribute: Give groups of tags a
class name, so we can reference it in CSS.
STYLE attribute: Screw all that. Just put
the CSS right in the tag.
Understanding 

<div>	
  
tags
HTML:
<div	
  id="container">	
  

!
!
</div>

CSS:
Some rules about divs
•

By default, <div> tags are invisible.
Some rules about divs
•
•

By default, <div> tags are invisible.
By default, <div> tags have height of zero.
Some rules about divs
•
•
•

By default, <div> tags are invisible.
By default, <div> tags have height of zero.
By default, <div> tags stretch to the full width of
the browser.
HTML:
<div	
  id="container">	
  

!
!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  

!
}
HTML:
<div	
  id="container">	
  

!
!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  
height:	
  300px;	
  

!
}
HTML:
<div	
  id="container">	
  

!
!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  
height:	
  300px;	
  
width:	
  200px;	
  

!
}
HTML:
<div	
  id="container">	
  

!
!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  
height:	
  300px;	
  
width:	
  400px;	
  
background:	
  red;	
  
}
Pop Quiz!
If I don't set a width, how wide are
divs by default?
If I don't set a width, how wide are
divs by default?

100% or the full browser width!
How tall are empty divs
if I don't set a height?
How tall are empty divs
if I don't set a height?

Zero pixels.!
If I create a div, and I don't see it on my
screen, what do I need to do to see it?
If I create a div, and I don't see it on my
screen, what do I need to do to see it?
Add some CSS styling, like border, height,
width, background colors/images, etc.!
•

<div> tags conform to the height of their
content.!

•

If you set a height on a <div> tag, it
overrides the content inside of it.!

•

If you set a width on a <div> tag, it
overrides the content inside of it.
HTML:
<div	
  id="container">	
  

!
!
!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  

!
}
HTML:
<div	
  id="container">	
  

!
Hello	
  world!	
  

!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  

!
}

Hello world!
HTML:
<div	
  id="container">	
  

!
Hello	
  world!<br>	
  
Foo<br>	
  
Bar<br>	
  

!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  

!
}

Hello world!	

Foo	

Bar
HTML:
<div	
  id="container">	
  

!
Hello	
  world!<br>	
  
Foo<br>	
  
Bar<br>	
  

!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  
height:	
  12px;	
  

!
}

Hello world!	

Foo	

Bar
HTML:
<div	
  id="container">	
  

!
Hello	
  world!	
  

!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  
height:	
  25px;	
  
width:	
  20px;	
  

!
}

Hello 	

world!
CSS!
IS!
AWESOME
Pop Quiz!
What happens to a <div> tag's
height when I add some text to it?
What happens to a <div> tag's
height when I add some text to it?

It expands to conform to the content.!
What happens if the width of a
<div> is smaller than a single word?
What happens if the width of a
<div> is smaller than a single word?

The text will protrude from the box.!
HTML:
<div	
  id="container">	
  

!
Hello	
  world!	
  

!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  
height:	
  15px;	
  
width:	
  50px;	
  

!
}

Hello world!
HTML:
<div	
  id="container">	
  

!
Hello	
  world!	
  

!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  
height:	
  15px;	
  
width:	
  50px;	
  
overflow:	
  hidden;	
  
}

Hello world!
HTML:
<div	
  id="container">	
  

!
Hello	
  world!	
  

!
</div>

CSS:
#container{	
  

!
border:	
  1px	
  solid	
  black;	
  
height:	
  15px;	
  
width:	
  50px;	
  
overflow:	
  hidden;	
  
}

Hello world!
The Box Model
The box model

hello
Margin

Border

Width

Padding
Box Model
Any padding, borders or
margin are in addition to
the width of the box.
HTML:
<div	
  id="container">	
  

!
	
  	
  <div	
  id="navigation">	
  
	
  	
  </div>	
  

!
</div>

CSS:
#container{	
  
	
  	
  width:	
  960px;	
  
}	
  

960px
HTML:
<div	
  id="container">	
  

!
	
  	
  <div	
  id="navigation">	
  
	
  	
  </div>	
  

!
</div>

CSS:
#container{	
  
	
  	
  width:	
  960px;	
  
}	
  
#navigation{	
  
	
  	
  width:	
  960px;	
  
	
  	
  background:	
  gray;	
  
}

960px
HTML:
<div	
  id="container">	
  

!
	
  	
  <div	
  id="navigation">	
  
	
  	
  </div>	
  

!
</div>

CSS:
#container{	
  
	
  	
  width:	
  960px;	
  
}	
  
#navigation{	
  
	
  	
  width:	
  960px;	
  
	
  	
  background:	
  gray;	
  
	
  	
  border:	
  5px	
  solid	
  red;	
  
}

960px
HTML:
<div	
  id="container">	
  

!
	
  	
  <div	
  id="navigation">	
  
	
  	
  </div>	
  

!
</div>

CSS:
#container{	
  
	
  	
  width:	
  960px;	
  
}	
  
#navigation{	
  
	
  	
  width:	
  960px;	
  
	
  	
  background:	
  gray;	
  
	
  	
  border:	
  5px	
  solid	
  red;	
  
}

960px
HTML:
<div	
  id="container">	
  

!
	
  	
  <div	
  id="navigation">	
  
	
  	
  </div>	
  

!
</div>

CSS:
#container{	
  
	
  	
  width:	
  960px;	
  
}	
  
#navigation{	
  
	
  	
  width:	
  960px;	
  
	
  	
  background:	
  gray;	
  
	
  	
  border:	
  5px	
  solid	
  red;	
  
	
  	
  padding:	
  5px;	
  
}

960px
HTML:
<div	
  id="container">	
  

!

960px

	
  	
  <div	
  id="navigation">	
  
	
  	
  </div>	
  

!
</div>

CSS:
#container{	
  
	
  	
  width:	
  960px;	
  
}	
  
#navigation{	
  
	
  	
  width:	
  960px;	
  
	
  	
  background:	
  gray;	
  
	
  	
  border:	
  5px	
  solid	
  red;	
  
	
  	
  padding:	
  5px;	
  
}

960px
HTML:
<div	
  id="container">	
  

!

960px

	
  	
  <div	
  id="navigation">	
  
	
  	
  </div>	
  

!
</div>

CSS:
#container{	
  
	
  	
  width:	
  960px;	
  
}	
  
#navigation{	
  
	
  	
  width:	
  960px;	
  
	
  	
  background:	
  gray;	
  
	
  	
  border:	
  5px	
  solid	
  red;	
  
	
  	
  padding:	
  5px;	
  
}

960px
Margins, Padding, Width

hello
Margin

Border
Width

Padding
Box model
Box model
Box model
Box model
Pop Quiz
What is the width of this box?

hello
20px

2px
200px

10px
What is the width of this box?

hello
20px

2px
200px

200 pixels

10px
What is the width and
padding combined?

hello
20px

2px
200px

10px
What is the width and
padding combined?

hello
20px

2px
200px

220 pixels

10px
What is the width and
padding and border combined?

hello
20px

2px
200px

10px
What is the width and
padding and border combined?

hello
20px

2px
200px

224 pixels

10px
What is the total (outer) width?

hello
20px

2px
200px

10px
What is the total (outer) width?

200 + 20 + 20 + !
10 + 10 + 2 + 2 =!

hello

!

264 pixels
20px

2px
200px

10px
padding and margins
padding:
padding and margins
padding:10px;
padding and margins
padding:10px	
  5px	
  1px	
  0;
padding and margins
padding:10px	
  5px	
  1px	
  0;

top
padding and margins
padding:10px	
  5px	
  1px	
  0;

top right
padding and margins
padding:10px	
  5px	
  1px	
  0;

top right
bottom
padding and margins
padding:10px	
  5px	
  1px	
  0;

top right

left
bottom
padding and margins
padding:10px	
  5px	
  1px	
  0;

top right

left
bottom
padding and margins
margin: 5px	
  15px	
  1px	
  10px;
padding and margins
margin: 5px	
  15px	
  1px	
  10px;

top
padding and margins
margin: 5px	
  15px	
  1px	
  10px;

top right
padding and margins
margin: 5px	
  15px	
  1px	
  10px;

top right bottom
padding and margins
margin: 5px	
  15px	
  1px	
  10px;

top right bottom left
padding and margins
padding:10px	
  2px;
padding and margins
padding:10px	
  2px;

top!
bottom
padding and margins
padding:10px	
  2px;

top! right!
bottom left
Pop Quiz
Explain the size of the
margins around the box
margin:	
  5px	
  25px;
Explain the size of the
margins around the box
margin:	
  5px	
  25px;
Top and bottom are 5 pixels, !
left and right are 25 pixels.!
Explain the size of the
padding inside this box
padding:	
  1px	
  1px	
  1px	
  40px;
Explain the size of the
padding inside this box
padding:	
  1px	
  1px	
  1px	
  40px;
Top, right, bottom are 1 pixel,!
the left side is 40 pixels
Explain the size of the
margins around the box
margin:	
  0	
  5px;
Explain the size of the
margins around the box
margin:	
  0	
  5px;
Top, right are 0 pixels,!
the left and right side is 5 pixels
Explain the size of the
padding inside the box
padding:	
  15px;
Explain the size of the
padding inside the box
padding:	
  15px;

All sides are 15 pixels
͞ otˌstrap|
bootstrap |ˈbo
!
noun
!
1 a loop at the back of a boot, used to pull it on.
!
2 Computing [ usu. as modifier ] the technique of starting with existing resources to
create something more complex and effective: we see the creative act as a bootstrap process.
!
!
verb (bootstraps, bootstrapping, bootstrapped) [ with obj. ]
!
1 get (oneself or something) into or out of a situation using existing resources:
the company is bootstrapping itself out of a marred financial past.
!
• start up (an enterprise), esp. one based on the Internet, with minimal resources:
they are bootstrapping their stations themselves, not with lots of dot-com venture capital.
Bootstrap
Bootstrap CDN
http://bit.ly/google-bootstrap
Include these <script> and <link> tags in the
head of your document.
!

You should also include jQuery too.
start with a responsive image

<img	
  src="http://placehold.it/2000x1000"	
  class="img-­‐responsive"	
  />
start with a responsive image

<img	
  src="http://placehold.it/2000x1000"	
  class="img-­‐responsive"	
  />
add a container
<div	
  class="container">	
  
!
!
!
!
!

</div>
add a container
<div	
  class="container">	
  
!
!
!
!
!

</div>
Grid System
4 col

4 col
4 col

8 col
row
row

col 3
row

col 3

col 3
row

col 3

col 3

col 3
row

col 3

col 3

col 3

col 3
row

col 3

col 3

col 3

col 3

=12
row

row

col 3

col 3

col 3

col 3

=12
row

row

col 3

col 5

col 3

col 3

col 3

=12
row

row

col 3

col 5

col 3

col 3

col 2

col 3

=12
row

row

col 3

col 5

col 3

col 3

col 2

col 3

col 4

=12
row

row

col 3

col 5

col 3

col 3

col 2

=12

col 3

col 4

col
1
row

row

col 3

col 5

col 3

col 3

col 2

=12

col 3

col 4

col
1

=12
Nested grids

Row
Nested grids

Row

col 8
Nested grids

Row

col 8

col 4
Nested grids

Row
Row

col 8

col 4
Nested grids

Row
Row

col 8

col 4
Nested grids

Row
Row

col 8

col 4
Nested grids

col 4
Row

Row
col 8

col 4
Nested grids

col 4
Row

Row
col 4
col 8

col 4
Nested grids

col 4
Row

Row
col 4
col 8

col 4
col 4
Nested grids

col 4
Row

Row
col 4
col 8

col 4
col 4
row

row
row

row

col 4
row

row

col 4

col 8
row

row

col 4

col 8
row

row

col 4

col 8
col 4

row

row

col 4

col 8
col 4

row

row

col 4

col 8
col 8
col 4

row

col 4

col 8
col 8

col 8

row
col 4

row

col 4

col 8
col 8

col 8

row

col 4
col 8
col 8

col 4
col 8

col 4
col 6

col 8

col 4
col 6

col 6

col 8

col 4
col 6

col 6

col 8

col 4
col 6

col 6

col 8
col 4

col 4
col 6

col 6

col 8
col 4

col 4

col 4
col 6

col 6

col 8
col 4

col 4

col 4
col 4
Offsets
col 6

col 5

col 2

col 4

col
1
Offsets
col 6

offset-3

col 5

col 2

col 4

col
1
Offsets
col 6

offset-3

col 5

col 2

col 4

col
1
Offsets
col 6

3 col

col 5

offset-3

col 2

col 4

col
1
Offsets
col 6

3 col

col 5

offset-3

col 2

3 col

col 4

col
1
Responsiveness

row

col 3

col 3

col 3

col 3
Responsiveness

row

col 3

col 3

col 3

col 3
Responsiveness
col 3

row

col 3
col 3
col 3
col 3

col 5

col 3

col 3

col 2

col 3

col 4

col
1
Order 1

Order 2

Order 3

Order 4

col 3

col 3

col 3

col 3

Order 5
col 5

Order
6

Order 7

col 2

col 4

Order 8
col
1
When should they stack?
never

col-sm-

750px

col-md-

970px

col-lg-

1170px
When should they stack?
never

col-sm-

750px

col-md-

970px

col-lg-

1170px
When should they stack?
col-xs-

never

col-sm-

750px

col-md-

970px

col-lg-

1170px
Add some rows
<div	
  class="container">	
  
!
!
!
!
!
!
!
!
!

</div>
Add some rows
<div	
  class="container">	
  
! 	
   <div	
  class="row">	
  
! !
! !
!

	
   </div>	
  

! !
!

	
   <div	
  class="row">	
  

! !
! !

	
   </div>	
  
</div>
!
Add some rows
<div	
  class="container">	
  
! 	
   <div	
  class="row">	
  
! !
! !
!

	
   </div>	
  

! !
!

	
   <div	
  class="row">	
  

! !
! !

	
   </div>	
  
</div>
!
Add some rows
<div	
  class="container">	
  
! 	
   <div	
  class="row">	
  
! !
! !
!

	
   </div>	
  

! !
!

	
   <div	
  class="row">	
  

! !
! !

	
   </div>	
  
</div>
!
Add some rows
<div	
  class="row">	
  
!

<div	
  class="col-­‐sm-­‐8	
  col-­‐sm-­‐offset-­‐2">	
  
	
   	
  
!
!

!

</div>

!
!
!
!
!

</div>

More Related Content

What's hot

Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Deepak Sharma
 
Intro to CSS
Intro to CSSIntro to CSS
Intro to CSS
Randy Oest II
 
Modular HTML & CSS
Modular HTML & CSSModular HTML & CSS
Modular HTML & CSS
Shay Howe
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointSahil Gandhi
 
CSS3 Media Queries
CSS3 Media QueriesCSS3 Media Queries
CSS3 Media Queries
Russ Weakley
 
Intro to HTML + CSS
Intro to HTML + CSSIntro to HTML + CSS
Intro to HTML + CSS
Jamal Sinclair O'Garro
 
Unit 2 (it workshop)
Unit 2 (it workshop)Unit 2 (it workshop)
Unit 2 (it workshop)
Dr.Lokesh Gagnani
 
HTML5 Essentials
HTML5 EssentialsHTML5 Essentials
HTML5 Essentials
Marc Grabanski
 
HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)
Daniel Friedman
 
Intro to CSS Presentation
Intro to CSS PresentationIntro to CSS Presentation
Intro to CSS Presentation
WP Pittsburgh Meetup Group
 
Web front end development introduction to html css and javascript
Web front end development introduction to html css and javascriptWeb front end development introduction to html css and javascript
Web front end development introduction to html css and javascript
Marc Huang
 
Demystifying WordPress Conditional Tags
Demystifying WordPress Conditional TagsDemystifying WordPress Conditional Tags
Demystifying WordPress Conditional Tags
WP Pittsburgh Meetup Group
 
Fundamental CSS3
Fundamental CSS3Fundamental CSS3
Fundamental CSS3
Achmad Solichin
 
CSS3 Introduction
CSS3 IntroductionCSS3 Introduction
CSS3 Introduction
Jaeni Sahuri
 
Css.html
Css.htmlCss.html
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
Gonzalo Cordero
 

What's hot (20)

Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
Cssbestpracticesjstyleguidejandtips 150830184202-lva1-app6892
 
Intro to CSS
Intro to CSSIntro to CSS
Intro to CSS
 
Modular HTML & CSS
Modular HTML & CSSModular HTML & CSS
Modular HTML & CSS
 
Css
CssCss
Css
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
 
CSS3 Media Queries
CSS3 Media QueriesCSS3 Media Queries
CSS3 Media Queries
 
Intro to HTML + CSS
Intro to HTML + CSSIntro to HTML + CSS
Intro to HTML + CSS
 
Unit 2 (it workshop)
Unit 2 (it workshop)Unit 2 (it workshop)
Unit 2 (it workshop)
 
HTML5 Essentials
HTML5 EssentialsHTML5 Essentials
HTML5 Essentials
 
HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)HTML/CSS Crash Course (april 4 2017)
HTML/CSS Crash Course (april 4 2017)
 
Intro to CSS Presentation
Intro to CSS PresentationIntro to CSS Presentation
Intro to CSS Presentation
 
Web front end development introduction to html css and javascript
Web front end development introduction to html css and javascriptWeb front end development introduction to html css and javascript
Web front end development introduction to html css and javascript
 
Yuicss R7
Yuicss R7Yuicss R7
Yuicss R7
 
Demystifying WordPress Conditional Tags
Demystifying WordPress Conditional TagsDemystifying WordPress Conditional Tags
Demystifying WordPress Conditional Tags
 
Fundamental CSS3
Fundamental CSS3Fundamental CSS3
Fundamental CSS3
 
CSS3 Introduction
CSS3 IntroductionCSS3 Introduction
CSS3 Introduction
 
Css.html
Css.htmlCss.html
Css.html
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
 
Css3
Css3Css3
Css3
 

Similar to HTML News Packages Lesson

HTML & CSS 2017
HTML & CSS 2017HTML & CSS 2017
HTML & CSS 2017
Colin Loretz
 
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
vincentleeuwen
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Design
mlincol2
 
Css basics
Css basicsCss basics
Css basics
ASIT
 
Css for Development
Css for DevelopmentCss for Development
Css for Developmenttsengsite
 
Intro to CSS with OvationTix's User Experience Lead
 Intro to CSS with OvationTix's User Experience Lead Intro to CSS with OvationTix's User Experience Lead
Intro to CSS with OvationTix's User Experience Lead
Product School
 
Html5 elements-Kip Academy
Html5 elements-Kip AcademyHtml5 elements-Kip Academy
Html5 elements-Kip Academy
kip academy
 
Web Design, Lesson Plan: Classes and IDs
Web Design, Lesson Plan: Classes and IDsWeb Design, Lesson Plan: Classes and IDs
Web Design, Lesson Plan: Classes and IDsSteve Kinney
 
How to dominate a free theme WCTO 2014
How to dominate a free theme WCTO 2014How to dominate a free theme WCTO 2014
How to dominate a free theme WCTO 2014
James Strang
 
Le wagon workshop - 2h landing page - Andre Ferrer
Le wagon   workshop - 2h landing page - Andre FerrerLe wagon   workshop - 2h landing page - Andre Ferrer
Le wagon workshop - 2h landing page - Andre Ferrer
André Ferrer
 
Class 2: CSS Selectors, Classes & Ids
Class 2: CSS Selectors, Classes & IdsClass 2: CSS Selectors, Classes & Ids
Class 2: CSS Selectors, Classes & Ids
Erika Tarte
 
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
TJ Stalcup
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
Tim Wright
 
Be nice to your designers
Be nice to your designersBe nice to your designers
Be nice to your designersPai-Cheng Tao
 
Html advance
Html advanceHtml advance
Html advance
PumoTechnovation
 

Similar to HTML News Packages Lesson (20)

HTML & CSS 2017
HTML & CSS 2017HTML & CSS 2017
HTML & CSS 2017
 
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
 
Web
WebWeb
Web
 
Intermediate Web Design
Intermediate Web DesignIntermediate Web Design
Intermediate Web Design
 
Css basics
Css basicsCss basics
Css basics
 
Css for Development
Css for DevelopmentCss for Development
Css for Development
 
CSS.pdf
CSS.pdfCSS.pdf
CSS.pdf
 
Intro to CSS with OvationTix's User Experience Lead
 Intro to CSS with OvationTix's User Experience Lead Intro to CSS with OvationTix's User Experience Lead
Intro to CSS with OvationTix's User Experience Lead
 
Html5 elements-Kip Academy
Html5 elements-Kip AcademyHtml5 elements-Kip Academy
Html5 elements-Kip Academy
 
Artdm171 Week5 Css
Artdm171 Week5 CssArtdm171 Week5 Css
Artdm171 Week5 Css
 
Web Design, Lesson Plan: Classes and IDs
Web Design, Lesson Plan: Classes and IDsWeb Design, Lesson Plan: Classes and IDs
Web Design, Lesson Plan: Classes and IDs
 
ARTDM 171, Week 5: CSS
ARTDM 171, Week 5: CSSARTDM 171, Week 5: CSS
ARTDM 171, Week 5: CSS
 
How to dominate a free theme WCTO 2014
How to dominate a free theme WCTO 2014How to dominate a free theme WCTO 2014
How to dominate a free theme WCTO 2014
 
Le wagon workshop - 2h landing page - Andre Ferrer
Le wagon   workshop - 2h landing page - Andre FerrerLe wagon   workshop - 2h landing page - Andre Ferrer
Le wagon workshop - 2h landing page - Andre Ferrer
 
Class 2: CSS Selectors, Classes & Ids
Class 2: CSS Selectors, Classes & IdsClass 2: CSS Selectors, Classes & Ids
Class 2: CSS Selectors, Classes & Ids
 
Artdm171 Week4 Tags
Artdm171 Week4 TagsArtdm171 Week4 Tags
Artdm171 Week4 Tags
 
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
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
Be nice to your designers
Be nice to your designersBe nice to your designers
Be nice to your designers
 
Html advance
Html advanceHtml advance
Html advance
 

More from UC Berkeley Graduate School of Journalism

CSS Tutorial
CSS TutorialCSS Tutorial
Understanding DIVs
Understanding DIVsUnderstanding DIVs
The 960 Grid System
The 960 Grid SystemThe 960 Grid System
Intro to CSS
Intro to CSSIntro to CSS
Intro to HTML
Intro to HTMLIntro to HTML

More from UC Berkeley Graduate School of Journalism (8)

Jquery plugins
Jquery pluginsJquery plugins
Jquery plugins
 
Quiz
QuizQuiz
Quiz
 
Floats
FloatsFloats
Floats
 
CSS Tutorial
CSS TutorialCSS Tutorial
CSS Tutorial
 
Understanding DIVs
Understanding DIVsUnderstanding DIVs
Understanding DIVs
 
The 960 Grid System
The 960 Grid SystemThe 960 Grid System
The 960 Grid System
 
Intro to CSS
Intro to CSSIntro to CSS
Intro to CSS
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 

Recently uploaded

Hogan Comes Home: an MIA WWII crewman is returned
Hogan Comes Home: an MIA WWII crewman is returnedHogan Comes Home: an MIA WWII crewman is returned
Hogan Comes Home: an MIA WWII crewman is returned
rbakerj2
 
AI and Covert Influence Operations: Latest Trends
AI and Covert Influence Operations: Latest TrendsAI and Covert Influence Operations: Latest Trends
AI and Covert Influence Operations: Latest Trends
CI kumparan
 
Preview of Court Document for Iseyin community
Preview of Court Document for Iseyin communityPreview of Court Document for Iseyin community
Preview of Court Document for Iseyin community
contact193699
 
Codes n Conventionss copy (1).paaaaaaptx
Codes n Conventionss copy (1).paaaaaaptxCodes n Conventionss copy (1).paaaaaaptx
Codes n Conventionss copy (1).paaaaaaptx
ZackSpencer3
 
Draft-1-Resolutions-Key-Interventions-.pdf
Draft-1-Resolutions-Key-Interventions-.pdfDraft-1-Resolutions-Key-Interventions-.pdf
Draft-1-Resolutions-Key-Interventions-.pdf
bhavenpr
 
Do Linguistics Still Matter in the Age of Large Language Models.pptx
Do Linguistics Still Matter in the Age of Large Language Models.pptxDo Linguistics Still Matter in the Age of Large Language Models.pptx
Do Linguistics Still Matter in the Age of Large Language Models.pptx
Slator- Language Industry Intelligence
 
Resolutions-Key-Interventions-28-May-2024.pdf
Resolutions-Key-Interventions-28-May-2024.pdfResolutions-Key-Interventions-28-May-2024.pdf
Resolutions-Key-Interventions-28-May-2024.pdf
bhavenpr
 
31052024_First India Newspaper Jaipur.pdf
31052024_First India Newspaper Jaipur.pdf31052024_First India Newspaper Jaipur.pdf
31052024_First India Newspaper Jaipur.pdf
FIRST INDIA
 
role of women and girls in various terror groups
role of women and girls in various terror groupsrole of women and girls in various terror groups
role of women and girls in various terror groups
sadiakorobi2
 
03062024_First India Newspaper Jaipur.pdf
03062024_First India Newspaper Jaipur.pdf03062024_First India Newspaper Jaipur.pdf
03062024_First India Newspaper Jaipur.pdf
FIRST INDIA
 
2024 is the point of certainty. Forecast of UIF experts
2024 is the point of certainty. Forecast of UIF experts2024 is the point of certainty. Forecast of UIF experts
2024 is the point of certainty. Forecast of UIF experts
olaola5673
 
Sharjeel-Imam-Judgement-CRLA-215-2024_29-05-2024.pdf
Sharjeel-Imam-Judgement-CRLA-215-2024_29-05-2024.pdfSharjeel-Imam-Judgement-CRLA-215-2024_29-05-2024.pdf
Sharjeel-Imam-Judgement-CRLA-215-2024_29-05-2024.pdf
bhavenpr
 
01062024_First India Newspaper Jaipur.pdf
01062024_First India Newspaper Jaipur.pdf01062024_First India Newspaper Jaipur.pdf
01062024_First India Newspaper Jaipur.pdf
FIRST INDIA
 

Recently uploaded (13)

Hogan Comes Home: an MIA WWII crewman is returned
Hogan Comes Home: an MIA WWII crewman is returnedHogan Comes Home: an MIA WWII crewman is returned
Hogan Comes Home: an MIA WWII crewman is returned
 
AI and Covert Influence Operations: Latest Trends
AI and Covert Influence Operations: Latest TrendsAI and Covert Influence Operations: Latest Trends
AI and Covert Influence Operations: Latest Trends
 
Preview of Court Document for Iseyin community
Preview of Court Document for Iseyin communityPreview of Court Document for Iseyin community
Preview of Court Document for Iseyin community
 
Codes n Conventionss copy (1).paaaaaaptx
Codes n Conventionss copy (1).paaaaaaptxCodes n Conventionss copy (1).paaaaaaptx
Codes n Conventionss copy (1).paaaaaaptx
 
Draft-1-Resolutions-Key-Interventions-.pdf
Draft-1-Resolutions-Key-Interventions-.pdfDraft-1-Resolutions-Key-Interventions-.pdf
Draft-1-Resolutions-Key-Interventions-.pdf
 
Do Linguistics Still Matter in the Age of Large Language Models.pptx
Do Linguistics Still Matter in the Age of Large Language Models.pptxDo Linguistics Still Matter in the Age of Large Language Models.pptx
Do Linguistics Still Matter in the Age of Large Language Models.pptx
 
Resolutions-Key-Interventions-28-May-2024.pdf
Resolutions-Key-Interventions-28-May-2024.pdfResolutions-Key-Interventions-28-May-2024.pdf
Resolutions-Key-Interventions-28-May-2024.pdf
 
31052024_First India Newspaper Jaipur.pdf
31052024_First India Newspaper Jaipur.pdf31052024_First India Newspaper Jaipur.pdf
31052024_First India Newspaper Jaipur.pdf
 
role of women and girls in various terror groups
role of women and girls in various terror groupsrole of women and girls in various terror groups
role of women and girls in various terror groups
 
03062024_First India Newspaper Jaipur.pdf
03062024_First India Newspaper Jaipur.pdf03062024_First India Newspaper Jaipur.pdf
03062024_First India Newspaper Jaipur.pdf
 
2024 is the point of certainty. Forecast of UIF experts
2024 is the point of certainty. Forecast of UIF experts2024 is the point of certainty. Forecast of UIF experts
2024 is the point of certainty. Forecast of UIF experts
 
Sharjeel-Imam-Judgement-CRLA-215-2024_29-05-2024.pdf
Sharjeel-Imam-Judgement-CRLA-215-2024_29-05-2024.pdfSharjeel-Imam-Judgement-CRLA-215-2024_29-05-2024.pdf
Sharjeel-Imam-Judgement-CRLA-215-2024_29-05-2024.pdf
 
01062024_First India Newspaper Jaipur.pdf
01062024_First India Newspaper Jaipur.pdf01062024_First India Newspaper Jaipur.pdf
01062024_First India Newspaper Jaipur.pdf
 

HTML News Packages Lesson