
Concept explainers
- Include the HTML tag using <html>.
- Include the header tag using <head>.
- Include the background color using <bgcolor=""> tag.
- Include the title on the webpage using <title> tag.
- Include the style using <style> tag.
- Include the footer using <footer>.
- Close the style tag using </style>.
- Close the header tag using </head>.
- Include the body tag using <body>.
- Include the heading to be displayed in the webpage using <h1> </h1> tag pair.
- Include the ordered list using <ol><li> and </li></ol> tag pair.
- Include the hyperlink of required website using <a> tag.
- Include the main using <main> tag.
- Include the table using <table> tag.
- Close the table using </table> tag.
- Close the main using </main> tag.
- Close the body tag using </body>.
- Include the header tag using <head>.
- Close the file using </html> tag.

The following program code describes about the webpage that includes the information about the hosting websites.
Explanation of Solution
Program:
<!--HTML Tag-->
<html lang="en">
<!--Alignment for background color-->
<body bgcolor="#E6E6FA">
<!--Head Tag-->
<head>
<!--Title Tag-->
<title>Hosting Websites</title>
<meta charset="utf-8">
<!--Style Tag-->
<style type="text/css">
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
#holder{
min-height: 100%;
position:relative;
}
#body{
padding-bottom: 350px; /* height of footer */
}
<!--Alignment for footer-->
footer{
height: 100px;
width:100%;
position: absolute;
left: 0;
bottom: 0;
}
<!--Close Tag-->
</style>
<!--Close Tag-->
</head>
<!--Alignment for Body Tag-->
<body>
<!--Alignment for Header Tag-->
<h1>Hosting Websites</h1>
<!--Alignment for Ordered List Tag-->
<ol>
<li><a href="https://www.1and1.com/web-hosting?ac=OM.US.US469K02463T2103a&PID=1238355&cjevent=5d9fba366d7a11e880c101b60a180513">1&1 Web Hosting</a></li>
<li><a href="https://in.godaddy.com/offers/web-hosting?isc=cjc1hos5&utm_source=cj&utm_medium=affiliate&utm_campaign=xx-xx_corp_affiliate_base&utm_content=Opie+Marketing_1132585&tgt=1238355">GoDaddy</a></li>
<li><a href="https://www.hostpapa.com/lp/hosting-review-discount-pricing?_ga=2.124435724.70132745.1528723092-1100687200.1528723092">HostPapa</a></li>
<!--Close Tag-->
</ol>
<!--Alignment for Header Tag-->
<h1>Table for Hosting Websites</h1>
<!--Alignment for Main Tag-->
<main>
<!--Alignment for Table-->
<table style="width:40%">
<tr>
<th>Table of Contents</th>
<th>1&1 Web Hosting</th>
<th>GoDaddy</th>
<th>HostPapa</th>
</tr>
<tr>
<td>Setup Fees(in rupees)</td>
<td>66.7755</td>
<td>99</td>
<td>266.4275</td>
</tr>
<tr>
<td>Monthly Fees (in rupees)</td>
<td>538.9255</td>
<td>449</td>
<td>538.9255</td>
</tr>
<tr>
<td>Domain Name Registration Costs</td>
<td>Free</td>
<td>Free</td>
<td>Free</td>
</tr>
<tr>
<td>Amount of Disk Space</td>
<td>100GB</td>
<td>100GB</td>
<td>Unlimited</td>
</tr>
<tr>
<td>Type of E-commerce Package</td>
<td>Basic</td>
<td>Economy</td>
<td>Starter</td>
</tr>
<tr>
<td>Cost of E-commerce Package</td>
<td>538.9255</td>
<td>449</td>
<td>538.9255</td>
</tr>
<!--Close Tag-->
</table>
<!--Close Tag-->
</main>
<!--Alignment for footer-->
<div id="holder">
<div id="body"></div>
<!-- email link attachment -->
<br>
<A HREF="mailto:name@mydomain.comCli">xyz@gmail.com</A>
<p>Name:XYZ</p>
</div>
<!--Close Tag-->
</body>
<!--Close Tag-->
</html>
Output:
Screenshot of the webpage
Want to see more full solutions like this?
- In javaarrow_forwardKeanPerson #keanld:int #keanEmail:String #firstName:String #lastName: String KeanAlumni -yearOfGraduation: int - employmentStatus: String + KeanPerson() + KeanPerson(keanld: int, keanEmail: String, firstName: String, lastName: String) + getKeanld(): int + getKeanEmail(): String +getFirstName(): String + getLastName(): String + setFirstName(firstName: String): void + setLastName(lastName: String): void +toString(): String +getParkingRate(): double + KeanAlumni() + KeanAlumni(keanld: int, keanEmail: String, firstName: String, lastName: String, yearOfGraduation: int, employmentStatus: String) +getYearOfGraduation(): int + setYearOfGraduation(yearOfGraduation: int): void +toString(): String +getParkingRate(): double In this question, write Java code to Create and Test the superclass: Abstract KeanPerson and a subclass of the KeanPerson: KeanAlumni. Task 1: Implement Abstract Class KeanPerson using UML (10 points) • Four data fields • Two constructors (1 default and 1 constructor with all…arrow_forwardPlz correct answer by best experts...??arrow_forward
- Q3) using the following image matrix a- b- 12345 6 7 8 9 10 11 12 13 14 15 1617181920 21 22 23 24 25 Using direct chaotic one dimension method to convert the plain text to stego text (hello ahmed)? Using direct chaotic two-dimension method to convert the plain text to stego text?arrow_forward: The Multithreaded Cook In this lab, we'll practice multithreading. Using Semaphores for synchronization, implement a multithreaded cook that performs the following recipe, with each task being contained in a single Thread: 1. Task 1: Cut onions. a. Waits for none. b. Signals Task 4 2. Task 2: Mince meat. a. Waits for none b. Signals Task 4 3. Task 3: Slice aubergines. a. Waits for none b. Signals Task 6 4. Task 4: Make sauce. a. Waits for Task 1, and 2 b. Signals Task 6 5. Task 5: Finished Bechamel. a. Waits for none b. Signals Task 7 6. Task 6: Layout the layers. a. Waits for Task 3, and 4 b. Signals Task 7 7. Task 7: Put Bechamel and Cheese. a. Waits for Task 5, and 6 b. Signals Task 9 8. Task 8: Turn on oven. a. Waits for none b. Signals Task 9 9. Task 9: Cook. a. Waits for Task 7, and 8 b. Signals none At the start of each task (once all Semaphores have been acquired), print out a string of the task you are starting, sleep for 2-11 seconds, then print out a string saying that you…arrow_forwardProgramming Problems 9.28 Assume that a system has a 32-bit virtual address with a 4-KB page size. Write a C program that is passed a virtual address (in decimal) on the command line and have it output the page number and offset for the given address. As an example, your program would run as follows: ./addresses 19986 Your program would output: The address 19986 contains: page number = 4 offset = 3602 Writing this program will require using the appropriate data type to store 32 bits. We encourage you to use unsigned data types as well. Programming Projects Contiguous Memory Allocation In Section 9.2, we presented different algorithms for contiguous memory allo- cation. This project will involve managing a contiguous region of memory of size MAX where addresses may range from 0 ... MAX - 1. Your program must respond to four different requests: 1. Request for a contiguous block of memory 2. Release of a contiguous block of memory 3. Compact unused holes of memory into one single block 4.…arrow_forward
- using r languagearrow_forwardProgramming Problems 9.28 Assume that a system has a 32-bit virtual address with a 4-KB page size. Write a C program that is passed a virtual address (in decimal) on the command line and have it output the page number and offset for the given address. As an example, your program would run as follows: ./addresses 19986 Your program would output: The address 19986 contains: page number = 4 offset = 3602 Writing this program will require using the appropriate data type to store 32 bits. We encourage you to use unsigned data types as well. Programming Projects Contiguous Memory Allocation In Section 9.2, we presented different algorithms for contiguous memory allo- cation. This project will involve managing a contiguous region of memory of size MAX where addresses may range from 0 ... MAX - 1. Your program must respond to four different requests: 1. Request for a contiguous block of memory 2. Release of a contiguous block of memory 3. Compact unused holes of memory into one single block 4.…arrow_forwardusing r languagearrow_forward
- Write a function to compute a Monte Carlo estimate of the Beta(3, 3) cdf, and use the function to estimate F(x) for x = 0.1,0.2,...,0.9. Compare the estimates with the values returned by the pbeta function in R.arrow_forwardWrite a function to compute a Monte Carlo estimate of the Gamma(r = 3, λ = 2) cdf, and use the function to estimate F(x) for x = 0.2, 0.4, . . . , 2.0. Compare the estimates with the values returned by the pgamma function in R.arrow_forwardusing r languagearrow_forward
- COMPREHENSIVE MICROSOFT OFFICE 365 EXCEComputer ScienceISBN:9780357392676Author:FREUND, StevenPublisher:CENGAGE LPrinciples of Information Systems (MindTap Course...Computer ScienceISBN:9781305971776Author:Ralph Stair, George ReynoldsPublisher:Cengage Learning
- Principles of Information Systems (MindTap Course...Computer ScienceISBN:9781285867168Author:Ralph Stair, George ReynoldsPublisher:Cengage LearningSystems ArchitectureComputer ScienceISBN:9781305080195Author:Stephen D. BurdPublisher:Cengage Learning


