- Create a Cascading Style Sheet (.css) that applies a minimum of background color and font.
- Create one (1) Web page and a heading tag that overrides the Cascading Style Sheet (.css) font settings and makes the font of the heading different from the rest of the page.
- The page must also include:
- An image depicting the item of the week, month, or year.
- At least three (3) hyperlinks to Websites of associated interest to the item and a brief description of what they are about.
- Example: Click here to visit Strayer University
- This link will take you to the University’s main page where you can find further information.
- At the bottom of the page, create a link that would allow the user to email you with questions using the mailto: tag and your email address.
- Note: When the email opens the subject line should automatically say, “More Information Please”.
- Create a footer displaying the Copyright symbol (using the character entity reference), the year, and your name.
- Example: © 2012 Mary Smith
- Include a piece of JavaScript in the page.
- Describe the structure of the World Wide Web as interconnected hypertext documents.
- Create and validate HTML documents.
- Create presentations using Cascading Style Sheets and DHTML.
- Summarize Web standards in terms of specifications, guidelines, software, and tools.
- Write clearly and concisely about Web design and development using proper writing mechanics and technical style conventions
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 });

