Creating a custom WordPress template a step by step tutorials

it courses

WordPress is one of the most popular content management systems on the internet. It is an excellent tool for creating websites, blogs, and online stores. If you want to create a website using WordPress, you can choose from a wide variety of templates that are available. However, if you want to create a unique website with a custom design, you will need to create a custom WordPress template. In this tutorial, we will provide you with step-by-step instructions on how to create a custom WordPress template.

Table of Contents:

Throughout the tutorial, we will cover essential topics such as setting up a development environment, creating basic template files, adding stylesheets and scripts, and adding functionality to the template. We will also teach you how to create custom post types and taxonomies, add custom fields, and test and deploy your custom template.

By the end of this tutorial, you will have a solid understanding of how to create a custom WordPress template. You will be able to create a unique website with a custom design that reflects your brand and stands out from the competition. Whether you're a beginner or an experienced developer, this tutorial will give you the knowledge and skills you need to succeed. So let's get started!

Introduction to WordPress Templates

If you're new to creating websites using WordPress, it may seem daunting to start creating a custom template from scratch. However, with this step-by-step tutorial, we will guide you through the process and provide you with the skills you need to create a custom WordPress template.

A WordPress template is a set of files that define the layout and design of your website. It determines how your content is displayed, and it includes the header, footer, sidebars, and other elements that make up the website's design. By creating a custom template, you can tailor the look and feel of your website to suit your brand, making it stand out from other websites using off-the-shelf templates.

This tutorial is suitable for beginners who are new to creating WordPress templates. We will walk you through the process step-by-step, using clear and concise instructions. You don't need any prior coding experience to follow this tutorial, but it will be helpful to have a basic understanding of HTML, CSS, and PHP.

Learning how to create a custom WordPress template is a valuable skill for anyone interested in web development. With WordPress powering over 40% of websites on the internet, there is a high demand for developers who can create custom templates for clients. By following this tutorial, you will learn the basics of template creation and gain the skills to create a unique website that meets your needs.

This tutorial will cover everything you need to know about creating a custom WordPress template, including setting up your development environment, creating basic template files, adding stylesheets and scripts, and adding functionality to the template. We will also show you how to create custom post types and taxonomies, add custom fields, and test and deploy your custom template.

By the end of this tutorial, you will have a thorough understanding of how to create a custom WordPress template. You'll learn how to create a unique design for your website and how to customize it to fit your brand. This tutorial will provide you with the tools and knowledge you need to create your own custom template and enhance your web development skills.

In the next section, we will cover setting up your development environment, which is an essential step in the template creation process. So let's get started, and begin learning how to create a custom WordPress template!

Setting up the Development Environment

Before we start creating our custom WordPress template, we need to set up our development environment. A development environment is the software and tools that you use to create and test your website. It is essential to have a reliable and efficient development environment to create your custom WordPress template successfully.

In this tutorial, we will show you how to set up your development environment to create your custom WordPress template. There are two primary components that you will need to set up: a local server and a code editor.

Step 1: Install a Local Server

To set up a local server, you will need to download software that creates a server environment on your computer. There are many options available, such as XAMPP, WAMP, and MAMP. In this tutorial, we will use XAMPP, which is a popular choice for WordPress development.

To install XAMPP, go to the Apache Friends website and download the version that is appropriate for your operating system. Once the download is complete, run the installer and follow the prompts to install XAMPP on your computer.

Step 2: Start Your Local Server

After you have installed XAMPP, you need to start the local server. To do this, open XAMPP Control Panel and click on the Start buttons next to Apache and MySQL. This will start the Apache web server and MySQL database server.

Step 3: Install a Code Editor

To create your custom WordPress template, you need a code editor. A code editor is a software application that allows you to write and edit code. There are many options available, such as Sublime Text, Atom, and Visual Studio Code. In this tutorial, we will use Visual Studio Code.

To install Visual Studio Code, go to the Microsoft website and download the version that is appropriate for your operating system. Once the download is complete, run the installer and follow the prompts to install Visual Studio Code on your computer.

Step 4: Install WordPress

After you have set up your local server and installed a code editor, you need to install WordPress. To do this, download the latest version of WordPress from the WordPress.org website. Extract the files from the downloaded zip file and copy them to the htdocs folder in your XAMPP installation directory.

Step 5: Create a Database

To install WordPress, you need to create a database. To do this, open phpMyAdmin in your web browser by typing "localhost/phpmyadmin" in the address bar. Click on the Databases tab and create a new database with a name of your choice.

Step 6: Install WordPress

Now that you have set up your development environment, you can install WordPress. To do this, open your web browser and go to "localhost/your_wordpress_directory". Follow the prompts to install WordPress, and enter the details of the database that you created in step 5.

Congratulations! You have successfully set up your development environment and installed WordPress. In the next tutorial, we will create the basic template files for our custom WordPress template.

Creating the Basic Template Files

Now that we have set up our development environment and installed WordPress, we can start creating the basic template files for our custom WordPress template. The template files are the files that define the structure and layout of our website.

WordPress has a default set of template files that are used to display different types of content, such as posts, pages, and archives. To create a custom WordPress template, we need to create new template files that override the default ones.

In this tutorial, we will create the basic template files for our custom WordPress template. We will create a template file for the homepage and a template file for single posts. We will also create a stylesheet file to define the styles for our website.

Step 1: Create a New Folder for Your Template

The first step is to create a new folder for our custom WordPress template. Navigate to the "wp-content/themes/" directory in your WordPress installation and create a new folder with a name of your choice. This folder will contain all the template files for our custom WordPress template.

Step 2: Create a Homepage Template File

The homepage template file is the file that is used to display the homepage of our website. To create a homepage template file, create a new file in your custom WordPress template folder and name it "home.php". Copy and paste the following code into the file:

<?php
/**
* Template Name: Home Page
*/
get_header();
?>
<!-- Add your content here -->
<?php
get_footer();
?>

This code defines the template name and includes the header and footer of our website. You can add your content between the "get_header()" and "get_footer()" functions.

Step 3: Create a Single Post Template File

The single post template file is the file that is used to display a single post on our website. To create a single post template file, create a new file in your custom WordPress template folder and name it "single.php". Copy and paste the following code into the file:

<?php
get_header();
?>
<!-- Add your content here -->
<?php
get_footer();
?>

This code includes the header and footer of our website. You can add your content between the "get_header()" and "get_footer()" functions.

Step 4: Create a Stylesheet File

The stylesheet file is the file that defines the styles for our website. To create a stylesheet file, create a new file in your custom WordPress template folder and name it "style.css". Copy and paste the following code into the file:

/*
Theme Name: My Custom Theme
Description: A custom WordPress theme
Author: Your Name
Author URI: Your website URL
Version: 1.0
*/

This code defines the name, description, author, author URI, and version of our custom WordPress template. You can add your own styles below this code.

Congratulations! You have created the basic template files for your custom WordPress template. In the next tutorial, we will add stylesheets and scripts to our custom WordPress template.

Adding Stylesheets and Scripts

Now that we have created the basic template files for our custom WordPress template, we can start adding stylesheets and scripts to our website. Stylesheets and scripts are essential for defining the look and feel of our website and adding functionality to it.

In this tutorial, we will add stylesheets and scripts to our custom WordPress template. We will create a new stylesheet file to define the styles for our website, and we will add a new script file to add functionality to our website.

Step 1: Enqueue Stylesheet

To add a new stylesheet file to our custom WordPress template, we need to enqueue it in the functions.php file. The functions.php file is a file that contains functions and code that are used to add functionality to our website.

To enqueue our stylesheet, open the functions.php file in your custom WordPress template folder and add the following code:

function custom_theme_styles() {
  wp_enqueue_style( 'style', get_stylesheet_uri() );
  wp_enqueue_style( 'custom-style', get_template_directory_uri() . '/custom.css', array(), '1.0.0', 'all' );
}
add_action( 'wp_enqueue_scripts', 'custom_theme_styles' );

This code adds our custom stylesheet "custom.css" to our website. You can replace "custom-style" with a name of your choice.

Step 2: Create a Script File

To add functionality to our website, we need to create a new script file. The script file is a file that contains JavaScript code that adds functionality to our website.

To create a new script file, create a new file in your custom WordPress template folder and name it "custom.js". Copy and paste the following code into the file:

jQuery(document).ready(function($) {
  // Add your JavaScript code here
});

This code adds a new JavaScript function that is executed when the page is loaded. You can add your JavaScript code between the "jQuery(document).ready(function($) {" and "});" functions.

Step 3: Enqueue Script

To enqueue our script, we need to add the following code to the functions.php file:

function custom_theme_scripts() {
  wp_enqueue_script( 'custom-script', get_template_directory_uri() . '/custom.js', array('jquery'), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'custom_theme_scripts' );

This code adds our custom script "custom.js" to our website. You can replace "custom-script" with a name of your choice.

Congratulations! You have added stylesheets and scripts to your custom WordPress template. In the next tutorial, we will add functionality to our template.

Adding Functionality to the Template

Now that we have added stylesheets and scripts to our custom WordPress template, we can start adding functionality to it. Functionality is essential for adding features to our website and making it more interactive and engaging.

In this tutorial, we will add functionality to our custom WordPress template. We will create custom menus, add custom widgets, and add custom post types.

Step 1: Create Custom Menus

Custom menus are a great way to add navigation to our website. To create custom menus, go to Appearance > Menus in your WordPress dashboard. Create a new menu and add the links to the pages or posts that you want to include in the menu.

To display the custom menu in your custom WordPress template, add the following code to your header.php file:

<?php
wp_nav_menu( array(
  'theme_location' => 'primary',
  'menu_class' => 'nav-menu',
  'container' => 'nav',
) );
?>

This code displays the custom menu in the header of your website.

Step 2: Add Custom Widgets

Custom widgets are a great way to add functionality to our website. To add custom widgets, go to Appearance > Widgets in your WordPress dashboard. Drag and drop the widgets that you want to add to the sidebar or footer of your website.

To display the custom widgets in your custom WordPress template, add the following code to your sidebar.php or footer.php file:

<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
  <div class="widget-area">
    <?php dynamic_sidebar( 'sidebar-1' ); ?>
  </div>
<?php endif; ?>

This code displays the custom widgets in the sidebar or footer of your website.

Step 3: Add Custom Post Types

Custom post types are a great way to add new types of content to our website. To add custom post types, add the following code to your functions.php file:

function custom_post_type() {
  register_post_type( 'product',
    array(
      'labels' => array(
        'name' => __( 'Products' ),
        'singular_name' => __( 'Product' )
      ),
      'public' => true,
      'has_archive' => true,
    )
  );
}
add_action( 'init', 'custom_post_type' );

This code registers a new custom post type called "Products" with the label "Product". You can customize the labels and options to fit your needs.

Congratulations! You have added functionality to your custom WordPress template. In the next tutorial, we will create custom post types and taxonomies.

Creating Custom Post Types and Taxonomies

Now that we have added functionality to our custom WordPress template, we can start creating custom post types and taxonomies. Custom post types and taxonomies are essential for organizing and displaying different types of content on our website.

In this tutorial, we will create custom post types and taxonomies. We will create a custom post type called "Portfolio" and a custom taxonomy called "Skills".

Step 1: Create Custom Post Type

To create a custom post type, add the following code to your functions.php file:

function custom_post_type() {
  register_post_type( 'portfolio',
    array(
      'labels' => array(
        'name' => __( 'Portfolio' ),
        'singular_name' => __( 'Portfolio' )
      ),
      'public' => true,
      'has_archive' => true,
    )
  );
}
add_action( 'init', 'custom_post_type' );

This code registers a new custom post type called "Portfolio" with the label "Portfolio". You can customize the labels and options to fit your needs.

Step 2: Create Custom Taxonomy

To create a custom taxonomy, add the following code to your functions.php file:

function custom_taxonomy() {
  register_taxonomy(
    'skills',
    'portfolio',
    array(
      'label' => __( 'Skills' ),
      'rewrite' => array( 'slug' => 'skill' ),
      'hierarchical' => true,
    )
  );
}
add_action( 'init', 'custom_taxonomy' );

This code registers a new custom taxonomy called "Skills" for the "Portfolio" custom post type. You can customize the labels and options to fit your needs.

Step 3: Display Custom Post Type and Taxonomy

To display the custom post type and taxonomy in your custom WordPress template, you can use the WordPress loop and the get_terms() function. Add the following code to your template file:

<?php
$args = array(
  'post_type' => 'portfolio',
  'posts_per_page' => 10,
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post();
?>
  <h2><?php the_title(); ?></h2>
  <div class="entry-content">
    <?php the_content(); ?>
    <?php
    $terms = get_the_terms( $post->ID, 'skills' );
    if ( $terms && ! is_wp_error( $terms ) ) :
      $term_names = array();
      foreach ( $terms as $term ) {
        $term_names[] = $term->name;
      }
      $terms_list = join( ", ", $term_names );
    ?>
    <p>Skills: <?php echo $terms_list; ?></p>
    <?php endif; ?>
  </div>
<?php endwhile; endif; wp_reset_postdata(); ?>

This code displays the "Portfolio" custom post type and the "Skills" custom taxonomy. You can customize the code to fit your needs.

Congratulations! You have created custom post types and taxonomies for your custom WordPress template. In the next tutorial, we will add custom fields to our template.

Adding Custom Fields

Now that we have created custom post types and taxonomies for our custom WordPress template, we can start adding custom fields. Custom fields are essential for adding extra information to our content, such as images, dates, and links.

In this tutorial, we will add custom fields to our custom WordPress template. We will use the Advanced Custom Fields plugin to create custom fields.

Step 1: Install Advanced Custom Fields

To add custom fields to our custom WordPress template, we need to install the Advanced Custom Fields plugin. Go to Plugins > Add New in your WordPress dashboard and search for "Advanced Custom Fields". Install and activate the plugin.

Step 2: Create Custom Fields

To create custom fields, go to Custom Fields > Add New in your WordPress dashboard. Create a new field group and add the fields that you want to include. You can choose from a variety of field types, such as text, image, and date.

Step 3: Display Custom Fields

To display the custom fields in your custom WordPress template, use the get_field() function. Add the following code to your template file:

<?php if ( get_field( 'field_name' ) ) : ?>
  <p><?php the_field( 'field_name' ); ?></p>
<?php endif; ?>

This code displays the custom field with the name "field_name". You can replace "field_name" with the name of your custom field.

Congratulations! You have added custom fields to your custom WordPress template. In the next tutorial, we will add custom functionality to our template using hooks and filters.

Adding Custom Functionality with Hooks and Filters

Now that we have added custom fields to our custom WordPress template, we can start adding custom functionality using hooks and filters. Hooks and filters are essential for modifying the behavior of WordPress without changing its core code.

In this tutorial, we will add custom functionality to our custom WordPress template using hooks and filters.

Step 1: Add Custom Functionality with Hooks

Hooks are actions and filters that WordPress uses to modify its behavior. To add custom functionality using hooks, add the following code to your functions.php file:

function custom_function() {
  // Add your custom code here
}
add_action( 'hook_name', 'custom_function' );

This code adds a custom function to the hook with the name "hook_name". You can replace "hook_name" with the name of the hook that you want to use.

Step 2: Add Custom Functionality with Filters

Filters are functions that modify the output of WordPress. To add custom functionality using filters, add the following code to your functions.php file:

function custom_filter( $content ) {
  // Add your custom code here
  return $content;
}
add_filter( 'filter_name', 'custom_filter' );

This code adds a custom function to the filter with the name "filter_name". You can replace "filter_name" with the name of the filter that you want to use.

Step 3: Use Hooks and Filters in Your Template

To use hooks and filters in your custom WordPress template, you can use the WordPress functions do_action() and apply_filters(). Add the following code to your template file:

<?php do_action( 'hook_name' ); ?>
<?php echo apply_filters( 'filter_name', $content ); ?>

This code executes the hook with the name "hook_name" and applies the filter with the name "filter_name" to the content variable.

Congratulations! You have added custom functionality to your custom WordPress template using hooks and filters. In the next tutorial, we will optimize our template for search engines.

Optimizing Your Template for Search Engines

Now that we have created a custom WordPress template with custom post types, taxonomies, and fields, we can start optimizing it for search engines. Optimizing your website for search engines is essential for increasing its visibility and driving more traffic to it.

In this tutorial, we will optimize our custom WordPress template for search engines. We will use on-page optimization techniques to improve the visibility of our website.

Step 1: Use SEO-Friendly URLs

SEO-friendly URLs are URLs that are easy to read and understand for both humans and search engines. To use SEO-friendly URLs in your custom WordPress template, go to Settings > Permalinks in your WordPress dashboard. Choose the "Post name" option and save your changes.

Step 2: Optimize Your Titles and Descriptions

Titles and descriptions are essential for informing search engines and users about the content of your website. To optimize your titles and descriptions, use the Yoast SEO plugin. Install and activate the plugin and use the plugin's features to optimize your titles and descriptions.

Step 3: Use Heading Tags

Heading tags (H1, H2, H3, etc.) are essential for structuring your content and informing search engines and users about the hierarchy of your content. To use heading tags in your custom WordPress template, use the WordPress editor to add headings to your content.

Step 4: Optimize Your Images

Images are essential for engaging users and improving the visual appeal of your website. To optimize your images for search engines, use descriptive file names and alt tags. Also, compress your images to reduce their file size and improve the loading time of your website.

Step 5: Use Internal and External Links

Internal and external links are essential for improving the structure and authority of your website. To use internal and external links in your custom WordPress template, link to relevant pages and posts on your website and link to high-quality external sources.

Congratulations! You have optimized your custom WordPress template for search engines. In this tutorial series, we have learned how to create a custom WordPress template from scratch, add functionality and custom fields, and optimize it for search engines. With these skills, you can create custom WordPress templates that meet your needs and improve your online presence.

Creating a custom WordPress template a step by step tutorials PDF eBooks

PowerPoint 2010: Custom Animations

The PowerPoint 2010: Custom Animations is a beginner level PDF e-book tutorial or course with 13 pages. It was added on October 16, 2015 and has been downloaded 2248 times. The file size is 347.1 KB. It was created by Kennesaw State University.


Dropbox file storage Instructions

The Dropbox file storage Instructions is a beginner level PDF e-book tutorial or course with 2 pages. It was added on September 29, 2016 and has been downloaded 432 times. The file size is 63.45 KB. It was created by dropbox.


Digital Marketing Step-By-Step

The Digital Marketing Step-By-Step is a beginner level PDF e-book tutorial or course with 43 pages. It was added on April 5, 2023 and has been downloaded 167 times. The file size is 709.22 KB. It was created by ondrej Svoboda.


How to Build a Computer from Scratch

The How to Build a Computer from Scratch is a beginner level PDF e-book tutorial or course with 35 pages. It was added on November 23, 2017 and has been downloaded 9317 times. The file size is 716.51 KB. It was created by Whitson Gordon.


Oracle 11g Express installation guide

The Oracle 11g Express installation guide is a beginner level PDF e-book tutorial or course with 19 pages. It was added on October 14, 2015 and has been downloaded 2858 times. The file size is 848.64 KB. It was created by Professor Chen.


Office 365 Deployment Step by Step

The Office 365 Deployment Step by Step is an intermediate level PDF e-book tutorial or course with 31 pages. It was added on October 1, 2015 and has been downloaded 6117 times. The file size is 430.25 KB. It was created by Microsoft.


WordPress The Right Way

The WordPress The Right Way is a beginner level PDF e-book tutorial or course with 62 pages. It was added on December 19, 2016 and has been downloaded 1828 times. The file size is 474.57 KB. It was created by Tom J Nowell.


How to Install SQL Server 2008

The How to Install SQL Server 2008 is a beginner level PDF e-book tutorial or course with 32 pages. It was added on December 13, 2012 and has been downloaded 2520 times. The file size is 980.83 KB. It was created by unknown.


Data Dashboards Using Excel and MS Word

The Data Dashboards Using Excel and MS Word is an intermediate level PDF e-book tutorial or course with 48 pages. It was added on January 21, 2016 and has been downloaded 11503 times. The file size is 1.71 MB. It was created by Dr. Rosemarie O’Conner and Gabriel Hartmann.


JavaScript Front-End Web App Tutorial Part 1

The JavaScript Front-End Web App Tutorial Part 1 is a beginner level PDF e-book tutorial or course with 48 pages. It was added on February 28, 2016 and has been downloaded 3905 times. The file size is 450.66 KB. It was created by Gerd Wagner.


MS Excel Using the IF Function

The MS Excel Using the IF Function is a beginner level PDF e-book tutorial or course with 11 pages. It was added on September 21, 2017 and has been downloaded 8042 times. The file size is 373.29 KB. It was created by TTC.


Web API Design: The Missing Link

The Web API Design: The Missing Link is a beginner level PDF e-book tutorial or course with 65 pages. It was added on March 20, 2023 and has been downloaded 177 times. The file size is 419.13 KB. It was created by google cloud.


The Twig Book

The The Twig Book is a beginner level PDF e-book tutorial or course with 157 pages. It was added on May 2, 2019 and has been downloaded 853 times. The file size is 841.49 KB. It was created by SensioLabs.


Introduction to Spring MVC

The Introduction to Spring MVC is a beginner level PDF e-book tutorial or course with 68 pages. It was added on December 30, 2016 and has been downloaded 3881 times. The file size is 616.87 KB. It was created by Thomas Risberg, Rick Evans, Portia Tung.


Microsoft Excel 2010: Step-by-Step Guide

The Microsoft Excel 2010: Step-by-Step Guide is a beginner level PDF e-book tutorial or course with 75 pages. It was added on June 23, 2016 and has been downloaded 14078 times. The file size is 2.41 MB. It was created by Andrea Philo - Mike Angstadt.


A practical guide to home automation

The A practical guide to home automation is a beginner level PDF e-book tutorial or course with 26 pages. It was added on February 3, 2023 and has been downloaded 270 times. The file size is 910.87 KB. It was created by STEVE OVENS.


Oracle 10g R2 and 11g R2 Installation Guide

The Oracle 10g R2 and 11g R2 Installation Guide is a beginner level PDF e-book tutorial or course with 59 pages. It was added on October 4, 2016 and has been downloaded 1893 times. The file size is 1.78 MB. It was created by Robert Schudy - Boston University.


Using Flutter framework

The Using Flutter framework is a beginner level PDF e-book tutorial or course with 50 pages. It was added on April 2, 2021 and has been downloaded 2882 times. The file size is 384.56 KB. It was created by Miroslav Mikolaj.


Dreamweaver CC 2017 - Creating Web Pages with a Template

The Dreamweaver CC 2017 - Creating Web Pages with a Template is a beginner level PDF e-book tutorial or course with 57 pages. It was added on November 1, 2017 and has been downloaded 8600 times. The file size is 1.6 MB. It was created by Kennesaw State University.


Creating a Website with Publisher 2016

The Creating a Website with Publisher 2016 is a beginner level PDF e-book tutorial or course with 45 pages. It was added on March 23, 2017 and has been downloaded 9923 times. The file size is 1.51 MB. It was created by Kennesaw State University.


Introduction to Visual Basic.NET

The Introduction to Visual Basic.NET is a beginner level PDF e-book tutorial or course with 66 pages. It was added on December 9, 2012 and has been downloaded 11994 times. The file size is 1.63 MB. It was created by Abel Angel Rodriguez.


Procreate: Actions & Animation

The Procreate: Actions & Animation is a beginner level PDF e-book tutorial or course with 33 pages. It was added on April 4, 2023 and has been downloaded 370 times. The file size is 2.25 MB. It was created by Procreate.


Adobe Dreamweaver CS5

The Adobe Dreamweaver CS5 is a beginner level PDF e-book tutorial or course with 41 pages. It was added on October 26, 2015 and has been downloaded 6796 times. The file size is 1.22 MB. It was created by Kennesaw State University.


Beginning Excel 2019

The Beginning Excel 2019 is a beginner level PDF e-book tutorial or course with 225 pages. It was added on December 9, 2021 and has been downloaded 30081 times. The file size is 7.88 MB. It was created by Noreen Brown, Barbara Lave, Hallie Puncochar, Julie Romey, Mary Schatz, Art Schneider, and Diane Shingledecker.


A Guide to Java Serverless Functions

The A Guide to Java Serverless Functions is a beginner level PDF e-book tutorial or course with 18 pages. It was added on February 2, 2023 and has been downloaded 64 times. The file size is 462.53 KB. It was created by DANIEL OH.


Excel 2016 - Intro to Formulas & Basic Functions

The Excel 2016 - Intro to Formulas & Basic Functions is an intermediate level PDF e-book tutorial or course with 15 pages. It was added on September 2, 2016 and has been downloaded 13856 times. The file size is 434.9 KB. It was created by Kennesaw State University.


Microsoft Outlook Advanced

The Microsoft Outlook Advanced is a beginner level PDF e-book tutorial or course with 30 pages. It was added on December 10, 2013 and has been downloaded 14403 times. The file size is 881.53 KB. It was created by Charles Sturt University.


An introduction to C++ template programming

The An introduction to C++ template programming is an advanced level PDF e-book tutorial or course with 23 pages. It was added on August 29, 2014 and has been downloaded 10254 times. The file size is 200.69 KB. It was created by Hayo Thielecke University of Birmingham.


Word 2016 - Formatting your Document

The Word 2016 - Formatting your Document is a beginner level PDF e-book tutorial or course with 26 pages. It was added on September 19, 2016 and has been downloaded 5509 times. The file size is 1.14 MB. It was created by Kennesaw State University.


ASP.NET MVC Music Store

The ASP.NET MVC Music Store is a beginner level PDF e-book tutorial or course with 136 pages. It was added on February 29, 2016 and has been downloaded 4937 times. The file size is 3.05 MB. It was created by Jon Galloway - Microsoft.


it courses