PLAY PODCASTS
Eps 18: Coding A Footer – Talking HTML

Eps 18: Coding A Footer – Talking HTML

Talking HTML · Tom Norman

December 2, 201513m 40s

Audio is streamed directly from the publisher (media.blubrry.com) as published in their RSS feed. Play Podcasts does not host this file. Rights-holders can request removal through the copyright & takedown page.

Show Notes

Welcome to Talking HTML, an audio/video internet thing for web developers who are just starting out.

 

If you enjoy listening please share it with your friends and Please go to iTunes and Stitcher to rate the show! Ratings get listeners!!

If you leave a good comment it could end up on the front page of the site!

http://www.Webdevpod.com for all the content and links

@TNPWDesign

@tommnorman

DreamHost promo code – tnpw
<footer>
<div class=”footer-box-1″>
</div>
<div class=”footer-box-2″>
</div>
<div class=”footer-box-3″>
</div>

<p id=”copyright”></p>
</footer>

<style>

#center {
width: 960px;
}

footer {
clear: both;
background: #7c765b;
color: #FFF;
height: auto;
padding: 10px;
}

.footer-box-1 {
width: 31%;
background: red;
color: black;
float: left;
padding: 5px 4px 5px 4px;
margin: 5px;
height: auto;
font-size: 1.2em;
}

.footer-box-2 {
width: 32%;
background: red;
color: black;
float: left;
padding: 5px 4px 5px 4px;
margin: 5px;
height: auto;
font-size: 1.2em;
}

.footer-box-3 {
width: 31%;
background: red;
color: black;
float: right;
padding: 5px 4px 5px 4px;
margin: 5px;
height: auto;
font-size: 1.2em;
}
footer p#copyright {
float: none;
clear: both;
margin: 15px 10px 0px 0px;
font-size: 1.3em;
text-align: right;
line-height: 2em;
}

</style>

 

 

The post Eps 18: Coding A Footer – Talking HTML appeared first on Schaffen Creative.