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

I have copied text from an HTML file below. Could you provide a basic example ba

ID: 3849374 • Letter: I

Question

I have copied text from an HTML file below. Could you provide a basic example based on the text and explain how would I go about:

1. adding styling by CSS style sheet

2. creating a Colophon page describing how you built the site and accomplished the requirements

3. keeping your content constant, link in replacement style sheet with different rendering

4. creating another Colophon page describing your changes and reecting on the results

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Home Page</title>
</head>

<body>
<h1>My Information</h1>
<h2>Name:</h2>
<p>Nathan Short</p>
<h2>Picture:</h2>
<img src="sachin.jpg" height="200" width="300">
<h2>Summary:</h2>
<p>Growing up as a child...</p>

<h2>Link</h2>

<a href="links.html">Open Links Page</a>
</body>
</html>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Links Page</title>
  
</head>

<body>
<h2>ESPN:</h2>
<a href="http://www.espn.com/">ESPN</a>
<h2>Maps:</h2>
<a href="https://www.google.com/maps/">Maps</a>
<h2>ThisIsWhyImBroke:</h2>
<a href="https://www.thisiswhyimbroke.com/">ThisIsWhyImBroke</a>

<h2>Summary:</h2>
<p>ESPN...</p>

</body>
</html>

Explanation / Answer

to adding css styling you can use-

<!DOCTYPE html>
<html>
<head>
<style>
body {background-color: powderblue;}
h1   {color: blue;}
p    {color: red;}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

for other parts please provide as seprate question

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