The web has become integral to computing many application now use a web browser
ID: 3795383 • Letter: T
Question
The web has become integral to computing many application now use a web browser as the slandered it is helpful to be able to generate output in HTML. It is also natural to generate HTML for information delivery system, such as blog Sound output to the steam out in the format specified below. Note that the output web page is just begging for enhancement(e, g., Title, CSS styling etc.) A lot of the extra information would belong in an expended blog Entry ADT. Add this function to your implementation of the Blog Entry ADT. Activate Test 8 in the test program test 2.cpp by changing the definition of LAB2_TSTs from 0 to 1 in consign h and recompiling. Complete the test plan for Test 2-8 by filling in the expected result for each test- Execute Test Plan 2-8. If you discover mistakes in your implementation of print BTKL comet them and execute the test plan again.Explanation / Answer
PLEASE DO OS THE QUESTION PROPERLY , AS IM NOT ABLE TO FIND OUT YOUR QUESTION EXACTLY, I ASSUME BY THE PROVIDED INFORMATIO THAT YOU NEED A CODE FOR THE CREATION OF BLOG.
HERE IS THE CODE FOR THAT
In CSS it is common to define CSS rules for the entire project.It is important that we reference the same CSS file in the blog page.
blog/indEx.html
<link rel="stylesheet" href="../main.css">
This will allow the styling from our CSS to also be applied to the blog page.
Next we change the title and content.
blog/indEx.html - Blog Overview
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../main.css">
<title>Blog - Web page for entry</title>
</head>
<body>
<h1 class="title">Blog</h1>
<p>I write about your favrouit things</p>
<h2>Blog Entries</h2>
<!-- Here will be a list of all the blog entries. -->
</body>
</html>
<!-- and -->. these tags are used to write a comment in HTML.
blog/entry/indEx.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../../main.css">
<title> Entry - Web Portfolio of Marco</title>
</head>
<body>
<h1 class="title">First Entry</h1>
<p>Feb 20, 2017</p>
<hr>
<p>This is my very first blog entry.</p>
</body>
</html>
Here I've included a new HTML element (hr). You will easily find out what it does by experimenting with it or by doing a quick internet search.
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.