HTML5 has seen many new elements and tags including the section tag <section>, the section tag defines sections on a web page. Such as chapters, headers, footers, or any other sections of the document.
Continue reading “HTML5 Section Tag” »
HTML5 has seen many new elements and tags including the section tag <section>, the section tag defines sections on a web page. Such as chapters, headers, footers, or any other sections of the document.
Continue reading “HTML5 Section Tag” »
Most social networks allow you to easily tag friends using the @ symbol so here is a simple solution to replace all @mentions with a link to a dynamic profile page.
This script is a very simplified solution and does not check mentions against friend association tables or a membership list, it will just replace any @mention with a link to a page of your choice, you will need to validate links and mentions yourself.
Continue reading “Replace Username when typing @username in PHP” »
CSS3 is used in organizing the style and layout of Web pages. It is the latest standard in the CSS series. CSS3 offers a wide variety of new trends to make an impact with your web designs. With many exciting new functions and features, CSS can be used as a powerful tool in website designing and development. A CSS3 refers to the technical stipulation of a layout. It ensures that a web page will appear precisely the way the website developer has specified.
Continue reading “Getting creative with CSS3” »
Here is an example of a simple website template that looks a little like Facebook it utilises similar colours, font and font size to give the feel of the worlds most popular social network.
This is not 100% and is not meant to imitate Facebook it is just an example of how to make a template in this style if you wanted to.
Demo <– Download link on sample template.
This script will allow you to change the CSS font size of a section of your website using PHP sessions, this has been created as a small PHP snippet to allow you to develop it further and make your website more accessible to people who are visually impaired.
Continue reading “Change CSS font size with PHP sessions” »
There is estimated an 15 percent of the global population living with disabilities, thats over 1 billion people so it makes good sense for website designers and developers to create website’s that are as accessible as possible, there are many ways we can make our website designs and layouts more accessible to people with disabilities and it is surprisingly good for search engine optimisation too.
Continue reading “HTML5 Web accessibility guide” »
HTML5 has seen a new element called <article></article> these tags have kinda replaced the use of styled <div> tags to highlight a single complete piece of information on your website, the information enclosed in <article> tags needs to be 100% complete so if the information enclosed in the article tags were to be removed and put on a page on their own the information would still be complete.
Continue reading “HTML5 Article Tag / Element” »
HTML doctype is not a HTML tag it is a declaration that needs to be put at the very top of your HTML page before the <html> tag.
There are all different types of doctype and these tell the browser what version of HTML your web page is written in for example, if your web page was written in HTML5 then you would use the following doctype declaration:
Continue reading “Different HTML Doctypes” »