Build a multi-page (3-page minimum) website using a free online web service.
Use a web editor to create a topic-specific website that can be used in the workplace/educational environment.
The website structure must:
Be composed of at least three pages; the final page of the website must consist of course-required content (see website content requirements)
Use no less than three different header tags
Contain no less than one image per page
Contain no less than one hyperlinked image
Contain no less than one ordered OR unordered list
Contain no less than three font variations (bold, italicized, color, size, etc.)
The background color must be something other than white
Incorporate at least two principles of the Cognitive Theory of Multimedia Learning on each page
Appropriately use content following copyright and fair use guidelines
The final page of the website should list all Web 2.0 resources used to create site components and highlight and explain the use of CTML principles and copyright/fair use guidelines used in the development of the website
I had planned to add learning
videos along with reading. There will be videos of explaining basic material of
languages. There will be audio available along with every text. Moreover on
information about myself, I will add an introduction paragraph on the homepage.
It will have a touch of my background and my interest of languages. On my final
website, I will add credibility on the homepage.
Last Completed Projects
topic title | academic level | Writer | delivered |
---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });