Frontend Development

A Basic HTML5 Template For Any Project

Submitted by Pandora, , Thread ID: 21460

Thread Closed
Pandora
Bored 24/7
Level:
0
Reputation:
-25
Posts:
27
Likes:
6
Credits:
28
02-06-2016, 12:33 AM
#1
This is not written by me,
original source: Here
original creator: Here

Well, thought i could share this for newbies. :glasses:



As you learn HTML5 and add new techniques to your toolbox, youre likely going to want to build yourself boilerplate, from which you can begin all your HTML5-based projects. We encourage this, and you may also consider using one of the many online sources that provide a basic HTML5 starting point for you.[1]
In this project, however, we want to build our code from scratch and explain each piece as we go along. Of course, it would be impossible for even the most fantastical and unwieldy sample site we could dream up to include every new element or technique, so well also explain some new features that dont fit into the project. This way, youll be familiar with a wide set of options when deciding how to build your HTML5 and CSS3 websites and web apps, so youll be able to use this book as a quick reference for a number of techniques.
Lets start simple, with a bare-bones HTML5 page:

Code:
<!doctype html>

<html lang="en">
<head>
<meta charset="utf-8">

<title>The HTML5 Herald</title>
<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">

<link rel="stylesheet" href="css/styles.css?v=1.0">

<!--[if lt IE 9]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>

<body>
<script src="js/scripts.js"></script>
</body>
</html>


With that basic template in place, lets now examine some of the significant parts of the markup and how these might differ from how HTML was written prior to HTML5.

The Doctype

First, we have the Document Type Declaration, or doctype. This is simply a way to tell the browseror any other parserwhat type of document its looking at. In the case of HTML files, it means the specific version and flavor of HTML. The doctype should always be the first item at the top of any HTML file. Many years ago, the doctype declaration was an ugly and hard-to-remember mess. For XHTML 1.0 Strict:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

And for HTML4 Transitional:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">

Although that long string of text at the top of our documents hasnt really hurt us (other than forcing our sites viewers to download a few extra bytes), HTML5 has done away with that indecipherable eyesore. Now all you need is this:
Code:
<!doctype html>

Simple, and to the point. The doctype can be written in uppercase, lowercase, or mixed case. Youll notice that the ?5 is conspicuously missing from the declaration. Although the current iteration of web markup is known as ?HTML5, it really is just an evolution of previous HTML standardsand future specifications will simply be a development of what we have today.

Because browsers are usually required to support all existing content on the Web, theres no reliance on the doctype to tell them which features should be supported in a given document. In other words, the doctype alone is not going to make your pages HTML5-compliant. Its really up to the browser to do this. In fact, you can use one of those two older doctypes with new HTML5 elements on the page and the page will render the same as it would if you used the new doctype

The HTML Element

Next up in any HTML document is the "html" element which has not changed significantly with HTML5. In our example, weve included the "lang" attribute with a value of "en" which specifies that the document is in English. In XHTML-based syntax, youd be required to include an "xmlns" attribute. In HTML5, this is no longer needed, and even the "lang" attribute is unnecessary for the document to validate or function correctly. So heres what we have so far, including the closing "html" tag
Code:
<!doctype html>
<html lang="en">

</html>

The Head Element
The next part of our page is the "head" section. The first line inside the "head" is the one that defines the character encoding for the document. This is another element thats been simplified since XHTML and HTML4, and is an optional feature, but recommended. In the past, you may have written it like this:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

HTML5 improves on this by reducing the character encoding "meta" tag to the bare minimum:

Code:
<meta charset="utf-8">

In nearly all cases, utf-8 is the value youll be using in your documents. A full explanation of character encoding is beyond the scope of this chapter, and it probably wont be that interesting to you, either. Nonetheless, if you want to delve a little deeper, you can read up on the topic on W3C or WHATWG.
Note: Encoding Declaration
To ensure that all browsers read the character encoding correctly, the entire character encoding declaration must be included somewhere within the first 512 characters of your document. It should also appear before any content-based elements (like the
Code:
<title>
element that follows it in our example site).
Theres much more we could write about this subject, but we want to keep you awakeso well spare you those details! For now, were content to accept this simplified declaration and move on to the next part of our document:

Code:
<title>The HTML5 Herald</title>
<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">

<link rel="stylesheet" href="css/styles.css?v=1.0">


In these lines, HTML5 barely differs from previous syntaxes. The page title (the only mandatory element inside the head tag is declared the same as it always was, and the meta tags weve included are merely optional examples to indicate where these would be placed; you could put as many valid meta elements here as you like. The key part of this chunk of markup is the stylesheet, which is included using the customary link elements There are no required attributes for link other than href and rel, the type (which was common in older versions of HTML) is not necessary, nor was it ever needed to indicate the content type of the stylesheet.

Leveling the Playing Field
The next element in our markup requires a bit of background information before it can be introduced. HTML5 includes a number of new elements, such as article & section which well be covering later on. You might think this would be a major problem for older browser support for unrecognized elements, but youd be wrong. This is because the majority of browsers dont actually care what tags you use. If you had an HTML document with a (recipe) tag (or even a ziggy tag) in it, and your CSS attached some styles to that element, nearly every browser would proceed as if this were totally normal, applying your styling without complaint.
Of course, such a hypothetical document would fail to validate and may have accessibility problems, but it would render correctly in almost all browsersthe exception being old versions of Internet Explorer (IE). Prior to version 9, IE prevented unrecognized elements from receiving styling. These mystery elements were seen by the rendering engine as ?unknown elements, so you were unable to change the way they looked or behaved. This includes not only our imagined elements, but also any elements that had yet to be defined at the time those browser versions were developed. That means (you guessed it) the new HTML5 elements.
The good news is, at the time of writing, most people still using a version of IE are using version 9 or higher, and very few are on version 9, so this is not a big problem for most developers anymore; however, if a big chunk of your audience is still using IE8 or earlier, youll have to take action to ensure your designs dont fall apart.
Fortunately, theres a solution: a very simple piece of JavaScript originally developed by John Resig. Inspired by an idea by Sjoerd Visscher, it can make the new HTML5 elements styleable in older versions of IE.
Weve included this so-called ?HTML5 shiv[2] in our markup as a script tag surrounded by conditional comments. Conditional comments are a proprietary feature implemented in Internet Explorer in version 9 and earlier. They provide you with the ability to target specific versions of that browser with scripts or styles. The following conditional comment is telling the browser that the enclosed markup should only appear to users viewing the page with Internet Explorer prior to version 9:
Code:
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->


It should be noted that if youre using a JavaScript library that deals with HTML5 features or the new APIs, its possible that it will already have the HTML5-enabling script present; in this case, you could remove reference to the script. One example of this would be Modernizr, a JavaScript library that detects modern HTML and CSS features. Modernizr gives you the option to include code that enables the HTML5 elements in older versions of IE, so the shiv would be redundant. We take a closer look at Modernizr in Appendix A.
Note: Not Everyone Can Benefit from the HTML5 Shiv
Of course, theres still a group of users unable to benefit from the HTML5 shiv: those who have for one reason or another disabled JavaScript and are using IE8 or lower. As web designers, were constantly told that the content of our sites should be fully accessible to all users, even those without JavaScript. But its not as bad as it seems. A number of studies have shown that the number of users who have JavaScript disabled is low enough to be of little concern, especially when you factor in how few of those will be using IE8 or lower.
In a study published in October, 2013, the UK Government Digital Service determined that users browsing government web services in the UK with JavaScript disabled or unavailable was 1.1%. In another study conducted on the Yahoo Developer Network (published in October 2010), users with JavaScript disabled amounted to around 1% of total traffic worldwide.

The Rest is History
Looking at the rest of our starting template, we have the usual body elements along with its closing tag and the closing html tag We also have a reference to a JavaScript file inside a script element

Much like the link tag discussed earlier, the script tag does not require that you declare a type attribute. If you ever wrote XHTML, you might remember your script tags looking like this:
Code:
<script src="js/scripts.js" type="text/javascript"></script>


Since JavaScript is, for all practical purposes, the only real scripting language used on the Web, and since all browsers will assume that youre using JavaScript even when you dont explicitly declare that fact, the type attribute is unnecessary in HTML5 documents:
Code:
<script src="js/scripts.js"></script>


Weve put the script element at the bottom of our page to conform to best practices for embedding JavaScript. This has to do with the page-loading speed; when a browser encounters a script, it will pause downloading and rendering the rest of the page while it parses the script. This results in the page appearing to load much more slowly when large scripts are included at the top of the page before any content. Its why most scripts should be placed at the very bottom of the page, so that theyll only be parsed after the rest of the page has loaded.

In some cases, however, (such as with the HTML5 shiv) the script may need to be placed in the head of your document, because you want it to take effect before the browser starts rendering the page.



Thanks for reading, the original source is in the title of this thread! :glasses:

RE: A Basic HTML5 Template For Any Project

TC2
Freak
Level:
0
Reputation:
110
Posts:
2.01K
Likes:
174
Credits:
912
02-06-2016, 12:36 AM
#2
Thanks for sharing Smile

RE: A Basic HTML5 Template For Any Project

Pandora
Bored 24/7
Level:
0
Reputation:
-25
Posts:
27
Likes:
6
Credits:
28
OP
02-06-2016, 12:37 AM
#3
02-06-2016, 12:36 AM
Aristocratic Wrote:
Thanks for sharing Smile

No problems Smile

RE: A Basic HTML5 Template For Any Project

fdigl
the actual smol girl ?
Õ░åµØÑÒü«Þ¿╝õ║║
Level:
3
Reputation:
253
Posts:
3.44K
Likes:
651
Credits:
3.7K
02-06-2016, 11:12 AM
#4
This one's actually decent, actually good to learn from. Good share.

RE: A Basic HTML5 Template For Any Project

./gladiat0r4e
/var/www/html
Level:
0
Reputation:
11
Posts:
50
Likes:
0
Credits:
21
24-06-2016, 08:13 AM
#5
Thanks to share this, its helpfull

RE: A Basic HTML5 Template For Any Project

kidtizzu
Banned
Level:
0
Reputation:
-3
Posts:
8
Likes:
0
Credits:
0
02-08-2016, 04:37 AM
#6
thanks for sharing this HQ information.

RE: A Basic HTML5 Template For Any Project

Pendejo
Junior Member
Level:
0
Reputation:
2
Posts:
50
Likes:
4
Credits:
1
02-08-2016, 08:48 PM
#7
Nice guide. Might actually take another look more carefully this time.

Cheers.

RE: A Basic HTML5 Template For Any Project

enocc
Newbie
Level:
0
Reputation:
0
Posts:
15
Likes:
1
Credits:
15
15-12-2016, 08:28 PM
#8
Thanks for sharing it, Pandora. Cheers

RE: A Basic HTML5 Template For Any Project

John
Veteran Member
Level:
0
Reputation:
25
Posts:
245
Likes:
38
Credits:
159
18-12-2016, 10:09 PM
#9
I know this is an older topic but for anyone checking out this thread, this is a very conservative HTML5 skeleton and not all of this is necessary at all to begin designing.
NulledBB Member Since 2013 | Former Staff Member | Web Designer

Need MyBB/website help? Feel free to message me!

RE: A Basic HTML5 Template For Any Project

johnenrico
Novice
Level:
0
Reputation:
0
Posts:
21
Likes:
0
Credits:
8
20-04-2017, 04:51 AM
#10
thanks for sharing such a great and informative information

Users browsing this thread: 1 Guest(s)