http://www.LittleWebHut.com
This video demonstrates how to use the HTML / XHTML div tag and how to style it with CSS. The examples will cover the basic usage for the div tag and demonstrate the CSS color, text-align, background, float, and width properties.
Views: 458375
tutor4u
Watch the clear and updated video here: https://www.youtube.com/watch?v=FPCNjVmQxYY
Align a div inside a div to the middle. Using css, set the child div's margin to zero and auto.
Read from the Article:
1. http://www.22bulbjungle.com/how-to-center-a-div-inside-a-div/
2. http://www.22bulbjungle.com/how-to-center-an-image-in-css/
Follow Us
Facebook: http://bit.ly/2srBAX7
Twitter: http://bit.ly/2tAEvgG
Instagram: http://bit.ly/2tbfnKn
Align a div inside a div to the middle. Using css, set the child div's margin to zero and auto.
Find out more Amazing CSS solutions in my channel: https://www.youtube.com/channel/UCaU1VsZaFQ1hHq8P2dGrJMw?sub_confirmation=1
css align center | align center css | css horizontal align | center div horizontally
Views: 61196
garnatti one
I show you 4 ways to center crap with CSS! Woo! Center a div with css. Center an image with css. Center your mom with valium.
CSS Basics Series - https://www.youtube.com/playlist?list=PLqGj3iMvMa4IOmy04kDxh_hqODMqoeeCy
Late Nights with Trav and Los Podcast - http://travandlos.com/
Subscribe on iTunes - https://itunes.apple.com/us/podcast/late-nights-with-trav-and-los/id944869246?mt=2
Sign up for my newsletter - http://travisneilson.com/
---
Thanks and credit to these artists, whos work I featured in this video
- Tristen Grant
https://www.youtube.com/user/tristengrant
- Imad Eddine Toubal
https://www.youtube.com/watch?v=Tfc-p-RY55o
- Celeste Boadas
http://www.celesteboadas.me/
- Rafael Bucker
http://bucker.com.br/33110/331348/projetos/impresso-no-brasil
Views: 220661
DevTips
using CSS style make text alignment vertically center in an HTML div element
Views: 240
Haritha Computers & Technology
HTML centering text or block vertically within an element.
- Single line of text using padding, line-height, and flex
-Multiple lines of text using display:table , display:flex
-block using position:absolute
techsith.com
Views: 36157
techsith
An exploration of Divs and how to control and position them with default relative positioning. Also how to control shared and unique properties through classes and ids to have your CSS code as efficient as possible.
Views: 116589
ob wex
Code:- http://bit.ly/2N7Coeg
In this video tutorial you learn about Css Grid and responsive layouts making with html and css .
Video Quality : Hd 480p / 720p / 1080p /
Views: 34346
Web Zone
Lesson Code: http://www.developphp.com/video/JavaScript/Partial-Print-Document-Tutorial-HTML-div-Content
Learn to allow users to print specific parts of your documents instead of printing the entire web page. We will apply print buttons near each printable portion of the document.
Views: 81768
Adam Khoury
How to draw a triangle and circle in html using pure css
html triangle shape
css triangle div element
html triangle down
html symbols
html triangle button
html triangle right
css triangle with border
Make Shapes with CSS
The Shapes of CSS
html circle shape
css circle div element
css circle with border radius
css shapes arrow
css circles
how to make a triangle in css
how to make a triangle button in css
how to make a triangle div css
how to draw a triangle in css
how to draw a triangle in css3
how to make a circle in css
how to draw a circle in css
how to draw a circle in css3
how to make a circle div in css
how to create circles with css
Views: 59187
techsith
CSS 'position' property explained . Learn how each fixed, absolute, relative, static value works with simple examples.
1. Static . 0:44 . (the default position, disturbing other elements)
2. relative . 2:00 . (remains in original position, but can be moved around without disturbing other elements)
3. Absolute . 7:35 . (remains in original position, but by default disturbs other elements - initially only)
4. fixed . 13:40 . (remains in original position, but by default disturbs other elements - initially only - also stays fixed on screen when scrolling up/down)
Views: 157063
techsith
HTML 5 video tutorial on make image and text align using vertical alignment text top property in Div tag
Views: 962
Haritha Computers & Technology
Please LIKE our Facebook page for daily updates...
https://www.facebook.com/Online-Tutorial-Html-Css-JQuery-Photoshop-1807958766120070/
Track: Skylike - Dawn
Link: https://youtu.be/Jg9nDEtqWV0
Views: 36587
Online Tutorials
Building a web page div structure with HTML and CSS. This is a very basic but effective example which can be used as a guide to build out a template or page for a website.
Views: 259746
Juan Di Diego
• Title: Vertically and Horizontally Centered Divs
• Tutorial sponsor: Quantico Singapore Copywriting and Content Marketing Courses (https://www.qc.sg)
• Music: End of Summer and Pas de Deux
• Author: Arjun Khara
Here's a simple and effective way to always have your divs centered vertically and horizontally, using the CSS3 transform: translate( ); property-value pair. Here's the code snippet, including browser fallbacks:
.centereddiv{
background-color: #000;
position: absolute;
width: 650px;
height: 100px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
Centering is a popular issue in CSS and gets a lot of attention just because it’s central to page layouts. we can simply use the property-value pair called Transform: Translate
Translate shifts an element on a page on the X and Y axes and it accepts all values, including percentage and pixels. We simply put:
transform: translate (-50%, -50%). That’s it.
Now when we change the dimensions of the div to anything we want. You can see the div always remains in the center, because the browser is compensating for any width and height dimensions using the translate property. It’s really easy.
It’s good practice to implement browser-fallback properties. So in addition to your code, you would simply add the browser prefix for translate like this.
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
Views: 13680
Arjun Khara
learn about the semantics behind section article and div tags in HTML.
Views: 13529
Before Semicolon
Tutorial of how to wrap text around a div element using HTML and CSS.
Like and share. It's FREE too :)
Download source code at:
https://drive.google.com/file/d/1B66x8fNp029F1NztH8Iy6Xw3i3CXq_Rz/
Follow us on Facebook
https://www.facebook.com/AllTech-1089946481026048/
Views: 377
AllTech
The BEST way to make a header with HTML:
https://www.youtube.com/watch?v=2Of_L7UY9uU
I know I'm not the best at these kind of videos yet, but if this has been even a little bit helpful to you, please leave a like and I'll definitely make more of these!
DOWNLOAD LINK!
http://downloadmycode.com/browse
Website:
www.marchinton.com
Twitter:
www.twitter.com/marchintonn
Facebook:
www.facebook.com/marchintondevelopment
Views: 186887
Marc Hinton
http://siteezy.com/ - Learn How to Design Responsive website Layouts and Develop Your Own CSS Menus!
For more Tutorials Please Visit: http://simpletut.com
Like Us On Facebook: https://www.facebook.com/SimpleTut
Views: 321850
SimpleTut
Yo Ninjas! In this HTML lesson we're going to take our coding skills up a notch and introduce the mighty DIV tag!! This is a versatile HTML tag that can help to organise your code and provide useful when we style our pages in CSS!
Beware ninjas - do not be too gung-ho with the div tag and use it everywhere! There are newer, HTML5 semantic tags which we can use in conjunction with our div tags to make our pages even better! Look out for my HTML5 course in the future :).
Views: 39976
The Net Ninja
In this video, we look at ways to change HTML content and attribute using JavaScript and HTML DOM.
Views: 9235
Loot Tutorial
css3 id vs class attributes,
when to use id and when to use class,
difference between id and class in css
css benefits of using class over id, css3 benefits of using id over class, html id vs class, css id vs class, html class vs id, css class vs id, The Difference Between ID and Class, id vs class tutorial, difference between id and class tutorial,The Difference Between class and id
HTML5, CSS3 and JavaScript Tutorials , lessons with examples.
Techsith.com
id vs class more of a design related question and its a very important one. Overall you will be using more classes then ids.
id: think of element that is unique. there is only one id per element. your html validateor would throw and en error if you do use it which means you will not be reusing the same style anywhere else. all the main containers in your HTMLs you should use id because you are not going to repete them . That doesnt mean that you cant use class there. advantage of using is for is as your main namespace. for css this way you can segregate work so your css doesn't messup. for example #leftContainer .button { color:red} which mean all the botton in the left containers are red.
class: you can used them freely. any common styles you can define as class. as you can have multiple classes for the same element. and mix and match of the classes will make your css small . for example you can create two divs with same color but diffrent font sizes.
Dont forget the attributes. actually id and class are attributes wich special meaning. and you can create your own custome attributes. like myattr. Platforms like angularjs uses them freely.
overall i thin its better to use classes then ids especially when you working in a team envirement where you are responsible for a partial html . using id can be riskier if someone else is using the same id in the other part of the html .
in css id has higher priority than class for example .....
Views: 78504
techsith
join our group in facebook
https://www.facebook.com/groups/704904666369941/
like our page
https://www.facebook.com/darkcode0/
Paypal Donation Link
https://paypal.me/YBenlachheb
Take Files From Here
https://goo.gl/zbMbcf
tags
simple css text animation effects
simple text animation css
simple text animation in css
simple text animation css3
_Music___
Cold Funk - Funkorama by Kevin MacLeod is licensed under a Creative Commons Attribution license (https://creativecommons.org/licenses/...)
Source: http://incompetech.com/music/royalty-...
Artist: http://incompetech.com/
Music promoted by Audio Library https://youtu.be/Vhd6Kc4TZls
Views: 132364
DarkCode
Please LIKE our Facebook page for daily updates...
https://www.facebook.com/Online-Tutorial-Html-Css-JQuery-Photoshop-1807958766120070/
Music Name : Spring In My Step by Silent Partner from YouTube Audio Library
Music URL : https://www.youtube.com/watch?v=siCmqvfw_1g
Views: 13174
Online Tutorials
http://www.killersites.com In this video tutorial, we define the content area with the main content div.
We've only made part of our content available for free. For the rest, check out our Killer Video Store or our Video Tutorial Library at Killersites.com!
http://www.killervideostore.com/
http://www.killersites.com/university/
http://www.killersites.com/community/
http://www.csstutorial.net/
Views: 3136
Stefan Mischook
In this tutorial, we will be styling text using CSS. I will show you how to change the following elements of the text:
• Font Family
• Font Size
• Font Weight (Bold)
• Underline
• Color
Twitter: http://twitter.com/coders_guide
Donate: http://goo.gl/mfMep
Views: 18109
Neil Rowe
Hey ninjas, in this CSS Positioning tutorial, I'll introduce you to floating elements. CSS floats are one of the most powerful and widely used CSS positioning properties, but can be a little tricky to get your head around at first!
SUBSCRIBE TO CHANNEL - https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg?sub_confirmation=1
========== JavaScript for Beginners Playlist ==========
https://www.youtube.com/playlist?list=PL4cUxeGkcC9i9Ae2D9Ee1RvylH38dKuET
========== CSS for Beginners Playlist ==========
https://www.youtube.com/playlist?list=PL4cUxeGkcC9gQeDH6xYhmO-db2mhoTSrT
========== HTML for Beginners Playlist ==========
https://www.youtube.com/playlist?list=PL4cUxeGkcC9ibZ2TSBaGGNrgh4ZgYE6Cc
========== The Net Ninja ============
For more front-end development tutorials & to black-belt your coding skills, head over to - https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg or http://thenetninja.co.uk
========== Social Links ==========
Twitter - @TheNetNinja - https://twitter.com/thenetninjauk
Views: 81720
The Net Ninja
Make two divs side by side using Float property in CSS
Hey guys in this tutorial I will show you how to make two (2) div tags in HTML side by side using the float property in CSS. I will be using Dreamweaver CS6 in this tutorial but you could use any free HTML editor you want including Notepad ++ , Coda or others.
Difficulty: Easy
Make sure you comment rate and subscribe.
link to video : http://www.youtube.com/watch?v=MUApnJ3y-Bs
!-------CHANNEL--------------!
http://youtube.com/how2cre8webs
Views: 151496
let's code!
Lesson Code: http://www.developphp.com/video/JavaScript/Change-CSS-Class-Style-className-Toggle-Tutorial
Learn to change, toggle and swap CSS classes using JavaScript event handling.
Views: 34021
Adam Khoury
Table In HTML and CSS | How To Create A Table| Learn HTML and CSS | HTML Tutorial | CSS Tutorial. In this HTML tutorial you will learn how t o create a table in HTML and CSS. You will also learn how to style an HTML table.
➤ GET ACCESS TO MY LESSON MATERIAL HERE!
First of all, thank you for all the support you have given me!
I am really glad to have such an awesome community on my channel. It motivates me to continue creating and uploading content! So thank you!
I am now using Patreon to share improved and updated lesson material, and for a small fee you can access all the material. I have worked hard, and done my best to help you understand what I teach.
I hope you will find it helpful :)
Material for this lesson: https://www.patreon.com/posts/html-25-download-16936599
Views: 27170
mmtuts
How to Always Keep the Footer at the Bottom of A Page | Learn HTML and CSS | HTML Tutorial. In this lesson we will learn how to keep the footer at the bottom of our page. Meaning that we don't want the footer to go above the height of our browser, when we don't have a lot of content on our pages.
--
mmtuts is a YouTube channel that focuses on teaching beginner and advanced courses in various multimedia related skills.
We plan to make tutorials available on programming, video production, animation, graphic design, and on software such as the Adobe Creative Cloud programs.
HTML and CSS for beginners is a how to series that teaches the HTML and CSS coding language to people who are just starting out learning programming. The course teaches how HTML and CSS can be made easy and teaches "front-end development" which is the visual part of websites. Creating static websites with HTML and CSS is easy and should not be seen as otherwise, which is why we want to explain the language in a easy to understand way for beginners.
If you have suggestions on new courses, or specific lessons within existing courses you would like to see, then feel welcome to submit them in the comment section or in a private message. ALL suggestions will be seen, but not all will be replied to since we get quite a few every day.
Views: 75150
mmtuts
How to change the text (html) of a a DIV using JQuery. Step by Step
Views: 7740
Calvin Brown
Want more? Explore the library at https://www.codecourse.com/lessons
Official site
https://www.codecourse.com
Twitter
https://twitter.com/teamcodecourse
Views: 38870
Codecourse
In this lesson I describe all that you need to know about DIVs. How they are aligned in html, how you can use CSS Style attributes to assign perfect to-the-pixel alignment of any and all your content(images, text, hyperlinks, etc), and more.
Views: 51105
TutorialClarity
In this tutorial I will show you how to write code for three small div boxes inside one large div box.
Div side by side, float div boxes, floating div boxes, aligning div boxes, float div box, boxes side by side, stacking div, aligning div, floating div, html div align, html div float, html div stack, css div float, Div side by side, float div boxes, floating div boxes, aligning div boxes, float div box, boxes side by side, stacking div, aligning div, floating div, html div align, html div float, html div stack, css div float, Div side by side, float div boxes, floating div boxes, aligning div boxes, float div box, boxes side by side, stacking div, aligning div, floating div, html div align, html div float, html div stack, css div float, Div side by side, float div boxes, floating div boxes, aligning div boxes, float div box, boxes side by side, stacking div, aligning div, floating div, html div align, html div float, html div stack, css div float
Please SUBSCRIBE to my channel to show some support. Thanks!
If you have any questions, feel free to let me know.
If you have any problems, or questions, send me a messege, and I would be glad to help. I hope you liked this tutorial, please like my videos, and subscribe to my channel.
Views: 102949
ColaBuzz
This Short Tutorial Shows How You Can Align Text Vertically Center Using HTML And CSS.
---------------- Social Media ----------------
Personal Account : https://www.instagram.com/harrnish/
Facebook : https://www.facebook.com/codegrid.web/
Instagram : https://www.instagram.com/codegrid.web/
Twitter : https://twitter.com/codegrid_web
Thanks For Watching !
Music :
Steve Angello Vs. Dimitri Vangelis & Wyman - Payback (Dropwizz Trap Remix) : https://www.youtube.com/watch?v=WaPOA...
Credits :
Dropwizz :
http://facebook.com/dropwizz
http://twitter.com/dropwizz
http://soundcloud.com/djdropwizz
Views: 4040
Codegrid
How to center text in div vertically and horizontally in html
how to align text in html
vertical align css
vertical align div
vertical align html
vertical alignment
Views: 1290
Jalal Ahmad
CSS used :
.circle{
background-image:url("yourImage.png");
width:50%;
border-radius:50%;
border:2px solid #000;
box-shadow:0 0 10px #000;
}
.circle:after{
content:"";
padding-bottom:100%;
display:block;
}
Image used : http://4.bp.blogspot.com/-0H3_WCM-j18/UfVc4YIheyI/AAAAAAAAArM/5j--KBDa_90/s640/Free+download+Natural+Wallpaper+background+Green+Nature+with+sunrise+wallpaper.png
About me : https://www.youtube.com/c/zfunx/about
Views: 10171
zFunx Web Developement Ideas
जय हिन्द, वन्दे मातरम|
Cascading Style Sheets (Programming Language),HTML (Programming Language),Css,Tutorial,Tips,Help,learn html online,learn html 5,learn html coding,learn html free,learn html code,how to learn html,learning html,how to create a website,html tutorial,html tags,how to build a website,how to make your own website,basic html,learn html basics,html code 101,learn html css,advanced html coding,css guide,learning css,learn divs css,learn csss 3
HTML div tag Example and Tutorial using CSS
best technology in the world,
best technology 2016,
best technology in the world 2016,
best technology movies,
best technology 2017,
best technology videos,
best technology channels,
best technology movies in hindi,
best technology in india,
best technology ever,
best technology,
best technology apps,
best technology apps for android,
best technology ads,
best technology advertisements,
best technology books,
best technology backpack,
best technology to buy,
best battery technology,
best technology car,
best technology car 2017,
best technology country,
best technology companies,
best technology commercials,
best technology careers,
best technology car 2015,
best computer technology,
best cheap technology,
best technology documentary,
best technology documentary 2016,
best technology devices,
best display technology,
best technology ever made,
best technology for students,
best technology for home,
best technology for 2017,
best future technology,
best technology gadgets,
best technology games,
Views: 82
A To Z technical info
Learn to create titles and text using HTML - HTML and CSS tutorial. In this lesson you will learn how to create titles and text using HTML. To do this we will learn about the HTML paragraph element, and the HTML header elements.
➤ GET ACCESS TO MY LESSON MATERIAL HERE!
First of all, thank you for all the support you have given me!
I am really glad to have such an awesome community on my channel. It motivates me to continue creating and uploading content! So thank you!
I am now using Patreon to share improved and updated lesson material, and for a small fee you can access all the material. I have worked hard, and done my best to help you understand what I teach.
I hope you will find it helpful :)
Material for this lesson: https://www.patreon.com/posts/html-4-download-15593148
Views: 46339
mmtuts
CSS text-decoration property:
It used to specify the line formatting of the text to be displayed
Values: none | underline | line-through | overline
========================================================
Follow the link for next video: https://youtu.be/Wa9PUIVOJ24
Follow the link for previous video: https://youtu.be/0vhVV99-S6o
========= For more benefits & Be up to date ===================
Subscribe to "chidres tech tutorials" channel: it's free
Visit to Chidre's Tech Tutorials website:
https://www.chidrestechtutorials.com
Like the Facebook fan page:
https://www.facebook.com/ManjunathChidre
========================================================
========== CSS Questions & Answers ========================
1. Which CSS property is used to remove underline from hyper links?
a. text-style
b. text-transform
c. text-decoration
d. anchor-style
Answer: c
========================================================
Views: 1164
Chidre'sTechTutorials
CSS text style #csstextstyle
Views: 212
Web Master
Print specific content of body - HTML & CSS
In this tutorial, you will learn how you can print a specific div or table to the printer using simple CSS styles. CSS print API allows you to specify which content should be sent to the printer.
If you face any problem, feel free to ask us in the comments section. You can follow us on Facebook too:
https://web.facebook.com/ComputerProgrammingTutorial/
Views: 104
Adnan Afzal
Through the use of some basic CSS rules you are able to quite easily change the text color and background color of the area selected (or highlighted) by the user.
This is done through the ::selection pseudo-element and is rather straightforward - however a slightly different syntax is required for support in Firefox.
In this video I take you through a simple example of how you can use this in your next website or web project - but be careful because it is a concern to accessibility: you will need to make sure the new styles have enough contrast to be visible by visually impaired users.
For your reference, check this out:
https://developer.mozilla.org/en-US/docs/Web/CSS/::selection
Follow me on Twitter @dcode!
If this video helped you out and you'd like to see more, make sure to leave a like and subscribe to dcode!
Views: 1322
dcode
Learn how to make an AFL Top 8 Ladder web page by using HTML and CSS. This is a slightly more advanced table than in the previous tutorial.
Views: 100135
tbate54
HTML Div, Span and Text Formatting Tags | UI/UX Tutorials | Mr.Naveen
►For Registration : https://goo.gl/r6kJbB ►Call: +91-8179191999
► Visit Our Website:
http://nareshit.in/
http://nareshit.com/
► About NareshIT:
"Naresh IT is the Best Software Training Institute for Hadoop, Salesforce, AWS, DevOps, Sprak, Data Science, Python, Tableau, RPA ,Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in Hyderabad, Chennai and Vijayawada, India which provides online and classroom training classes"
►For Registration : https://goo.gl/r6kJbB
►Call:
India- 8179191999, USA- 404-232-9879
Email: [email protected]
►Our Online Training Features:
1.Training with Real-Time Experts
2.Industry Specific Scenario’s
3.Flexible Timings
4.Soft Copy of Material
5.Share Video's of each and every session.
Check The Below Links:
►For Course Reg : https://goo.gl/r6kJbB
► Subscribe to Our Channel: https://goo.gl/q9ozyG
► Circle us on G+: https://plus.google.com/NareshIT
► Like us on Facebook: https://www.facebook.com/NareshIT
► Follow us on Twitter: https://twitter.com/nareshitech
► Visit Our Website:
http://nareshit.in/
http://nareshit.com/
Views: 9776
Naresh i Technologies
In Webflow, HTML tags give us an easy way to control the default styling for a particular element, without creating a unique class. For example, you can define the default styles for all paragraphs by editing the All Paragraphs tag. Adding a class with styles will override these default styles.
Here’s what we’ll be covering:
1. Accessing tags
2. Styling tags versus classes
3. Example 1: All H1 Headings tag
4. Example 2: All Links tag
5. Example 3: All Images tag
----------
Get started with Webflow:
https://help.webflow.com/courses/getting-started
http://webflow.com
http://twitter.com/webflow
http://facebook.com/webflow
Views: 19812
Webflow
Setting the style of an HTML element, can be done with the style attribute.
#TechSickness
#Webdevelopment
In the previous chapter, you learned about the HTML style attribute.
HTML also defines special elements for defining text with a special meaning.
HTML uses elements like b tag and i tag for formatting output, like bold or italic text.
Formatting elements were designed to display special types of text:
b - Bold text
strong - Important text
i - Italic text
em - Emphasized text
mark - Marked text
small - Small text
del - Deleted text
ins - Inserted text
sub - Subscript text
sup - Superscript text
I you like this video than like share and subscribe #techsickness
Facebook: https://www.facebook.com/Techsickness/
Views: 23
Tech Sickness
Please LIKE our NEW Facebook page for daily updates...
https://www.facebook.com/Online-Tutorial-Html-Css-JQuery-Photoshop-1807958766120070/
Views: 174536
Online Tutorials
This HTML tutorial shows how to flow text around a normally inline image element using the CSS float property. Watch more at http://www.lynda.com/HTML-tutorials/HTML-Essential-Training-2012/99326-2.html?utm_medium=viral&utm_source=youtube&utm_campaign=videoupload-web-dev-mEMrFbX4Agg.
This tutorial is a single movie from the first chapter of the HTML Essential Training course presented by lynda.com author Bill Weinman. The complete course is 5.5 hours long and introduces new web designers to the nuts and bolts of HTML (HyperText Markup Language), the programming language behind most web pages
HTML Essential Training table of contents:
Introduction
1. Overview
2. Fundamentals of HTML
3. Meta data and the document head
4. Text
5. A CSS Primer
6. Images
7. Hyperlinks
8. Lists
9. Structural, contextual, and semantic elements
10. Audio, video and other objects
11. HTML5 Data Elements
12. HTML5 Microdata
13. Document Outlines
14. Tables
15. Frames
16. Forms
17. A case study
Conclusion
Views: 118891
LinkedIn Learning
A tutorial that takes a look at how to create a nice looking nav bar with a cool little hover effect for the nav items, using HTML and CSS.
This was the very first video I ever put up on YouTube, and while it's aged well, I've made an updated version that is responsive: https://youtu.be/8QKOaTYvYUA
I've put this on Codepen: http://codepen.io/kevinpowell/pen/GrLKNo
I start this video off with a quick look at how to actually write the HTML for a navigation bar, follow it up with the simple styling of the navigation with CSS and then wrap it all up with how to add the hover effect in there using some fun little hover tricks.
If you want a bit more reading on pseudo elements, this should help: https://developer.mozilla.org/en-US/docs/Web/CSS/::after
Views: 223063
Kevin Powell