Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Create a website about anything you choose. (This might be a good time to help o

ID: 3907636 • Letter: C

Question

Create a website about anything you choose. (This might be a good time to help out your local charity or your friend starting up a new business.) Your site must include: At least 4 pages All the essential tags on each page (Ch.1) At least 5 comments to explain your code (Ch. 2) A functional navigation menu on all 4 pages (Ch. 2 and 3) A list (Ch. 3) An email link (Ch. 3) An image with height, width, and alt text (Ch. 3) An external style sheet with at least 10 style rules for various parts of your site (Ch. 4) At least 3 semantic elements to ensure your page layout is designed well (Ch. 7) A table with at least two columns and two rows (Ch. 8) An audio or video file, sized appropriately (Ch. 9) I am mainly needing help creating a shell so I can understand how it is to be built.

Explanation / Answer

PROGRAM:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Styles Conference</title>
<!-- External style sheet-->
<link rel="stylesheet" href="assets/main.css">
</head>
<body>

<!-- Header -->
<header>
<h1 class="">
<a href="index.html">Styles <br> Conference</a>
</h1>
<!--Navigation Menu -->
<nav class="">
<a href="index.html">Home</a>
<a href="aboutus.html">About Us</a>
<a href="Services.html">Services</a>
<a href="contact.html">Contact Us</a>
</nav>
</header>
<section>
<!--Different Page Specific work is to be done here-->
</section>
<!-- Footer -->
<footer >
<small>&copy; Styles Conference</small>

<a href="index.html">Home</a>
<a href="aboutus.html">About Us</a>
<a href="Services.html">Services</a>
<a href="contact.html">Contact Us</a>
</footer>
</body>
</html>

Write this code in all the html file.You have to now work in <section></section> tag which will be specific for each page.like contact details in contact page ,and services in services page and so on.

The above code already specifies the following requirements:

5.At least 3 semantic elements to ensure your page layout is designed well (Ch. 7)

6. A list (Ch. 3)

Ordered Lists

<ol>

<li>One</li>

<li>Two</li>

<li>Three</li>

</ol>

Unordered Lists

7.An image with height, width, and alt text (Ch. 3)

<img src="Path of your image" alt="image of a dog" height="500" width="100" />

Note :path given to image files are same as css filein head section. Please create an image folder in main project folderand save all the images in image folder and give path like: image/hello.png.Height and width are in pixels.

8.An audio or video file, sized appropriately (Ch. 9)

Audio file

Please create a separate folder Audio in main page folder save file in that and give path in src

Vedio File

same as audio create folder and all

9.A table with at least two columns and two rows (Ch. 8)

<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>

<tr>
    <td>March</td>
    <td>$300</td>
  </tr>
</table>

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote