FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

How TO - Build a Web Site in 2016


Learn how to create a fast and awesome responsive website that will work on all devices, PC, laptop, tablet, and phone.



A "Layout Draft"

It is always wise to draw a layout draft of the page design before building a website.

Having a "Layout Draft" will make it a lot easier to create a web site:

Navigation bar

Slide show

The Band

Description if the band

Description if the band

Description if the band


Article

Article

Article


Footer


Doctype, Meta Tags, and CSS

The doctype should define the page as an HTML5 document:

<!DOCTYPE html>

A meta tag should define the character set to be UTF-8:

<meta charset="UTF-8">

A viewport meta tag should make the web site work on all devices and screen resolutions:

<meta name="viewport" content="width=device-width, initial-scale=1">

subhodaya.css should take care of all our styling needs and all device and browser differences:

<link rel="stylesheet" href="http://tutorials/lib/subhodaya.css">

To learn more about styling with subhodaya.css, please visit our subhodaya.css Tutorial.

Our first empty web page will look much like this:

<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://tutorials/lib/subhodaya.css">
<body>

<!-- Content will go here -->

</body>
</html>

Creating Page Content

Inside the <body> element of our web site we will use our "Layout Picture" and create:

  • A navigation bar
  • A slide show
  • A header
  • Some sections and articles
  • A footer

Semantic Elements

HTML5 introduced several new semantic elements. Semantic elements are important to use because they define the structure of web pages and helps screen readers and search engines to read the page correctly.

These are some of the most common semantic HTML elements:

The <section> element can be used to define a part of a website with related content.

The <article> element can be used to defines an individual piece of content.

The <header> element can be used to define a header (in a document, a section, or an article).

The <footer> element can be used to define a footer (in a document, a section, or an article).

The <nav> element can be used to define a container of navigation links.

In this tutorial we will use semantic elements.

However, it is up to you if you want to use <div> elements instead.


The Navigation Bar

On our "Layout Draft" we have a "Navigation bar".

For the navigation bar we can use an unordered list of links:

<!-- Navigation -->
<nav>
  <ul class="subhodaya-navbar subhodaya-black">
    <li><a href="javascript:void(0)">Home</a></li>
    <li><a href="javascript:void(0)">Band</a></li>
    <li><a href="javascript:void(0)">Tour</a></li>
    <li><a href="javascript:void(0)">Contact</a></li>
  </ul>
</nav>

Try it Yourself »

We can use a <nav> or <div> element as a container for the navigation links.

The subhodaya-navbar class styles the navigation links.

The subhodaya-black class defines the color of the navigation bar.

 javascript:void(0) prevents the links from linking (since the project is under development).


Slide Show

On the "Layout Draft" we have a "Slide show".

For the slide show we can use a <section> or <div> element as a picture container:

<!-- Slide Show -->
<section>
  <img class="mySlides" src="img_la.jpg" style="width:100%">
  <img class="mySlides" src="img_ny.jpg" style="width:100%">
  <img class="mySlides" src="img_chicago.jpg" style="width:100%">
</section>

Try it Yourself »

We need to add a little JavaScript to change the images every 3 seconds:

// Automatic Slideshow - change image every 3 seconds
var myIndex = 0;
carousel();

function carousel() {
    var i;
    var x = document.getElementsByClassName("mySlides");
    for (i = 0; i < x.length; i++) {
        x[i].style.display = "none";
    }
    myIndex++;
    if (myIndex > x.length) {myIndex = 1}
    x[myIndex-1].style.display = "block";
    setTimeout(carousel, 3000);
}

TTry it Yourself »


Sections and Articles

Looking at the "Layout Draf" we can see that the next step is to create articles.

First we will create a <section> or <div> element containing band information:

<section class="subhodaya-container subhodaya-center" style="max-with:600px">
  <h2 class="subhodaya-wide">THE BAND</h2>
  <p class="subhodaya-opacity"><i>We love music</i></p>
</section>

Try it Yourself »

The subhodaya-container class takes care of standard padding.

The subhodaya-center class centers the content.

The subhodaya-wide class provides a wider heading.

The subhodaya-opacity class provides text transparency.

The max-width style sets a maximum with of the band description section.

Then we will add a paragraph describing the band:

<section class="subhodaya-container subhodaya-content subhodaya-center" style="max-with:600px>
<p class="subhodaya-justify">
We have created a fictional band website. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</section>

Try it Yourself »

The subhodaya-justify class justifies the text's right and left margins.

Then create a <section> or <div> with an <article> or <div> about each band-member:

<section class="subhodaya-row-padding subhodaya-center subhodaya-light-grey">
  <article class="subhodaya-third">
    <p>John</p>
    <img src="img_bandmember.jpg" alt="Random Name" style="width:100%">
  </article>
  <article class="subhodaya-third">
    <p>Paul</p>
    <img src="img_bandmember.jpg" alt="Random Name" style="width:100%">
  </article>
  <article class="subhodaya-third">
    <p>Ringo</p>
    <img src="img_bandmember.jpg" alt="Random Name" style="width:100%">
  </article>
</section>

Try it Yourself »


Footer

Finally we will use a <footer> or <div> class to create a footer:

<!-- Footer -->
<footer class="subhodaya-container subhodaya-padding-64 subhodaya-center subhodaya-black subhodaya-xlarge">
  <a href="#"><i class="fa fa-facebook-official"></i></a>
  <a href="#"><i class="fa fa-pinterest-p"></i></a>
  <a href="#"><i class="fa fa-twitter"></i></a>
  <a href="#"><i class="fa fa-flickr"></i></a>
  <a href="#"><i class="fa fa-linkedin"></i></a>
  <p class="subhodaya-medium">
    Powered by <a href="http://tutorials/subhodayacss/default.asp" target="_blank">subhodaya.css</a>
  </p>
</footer>

Try it Yourself »

The fa fa classes are Font Awesome Icon classes.

To use these classes you must link to a Font Awesome library:

<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css">

To learn more about using icons, please visit our Icons Tutorial.