// I need help in creating and publishing a website with two pages for this assignment, I am new to this and need a bit of help as to what and how many HTML files I need to create, and CSS files. If anyone could send me a sample code or anything to start out with it would be appreciated ! I have attached the specifications and requirements below
CPI 101 Introduction to Informatics
Homework #1 Check Out My Website!
Instructor: Dianne Hansford, Ph.D.
Big Picture: You will create and publish a website with two pages,
a home page with a meme and a resume page.
Learning Goals:
• Learn the basics of HTML5
• Learn the basics of CSS
• Learn how to publish a website
• Apply tutorial information to a specific problem
Specifications:
1. Create a home page named index.html. This page must include the
following.
a. head section with a title
b. body section with text, an image (including the alt attribute),
and a hyperlink to your resume page
c. You choose the text to include on this page. Additionally,
include a meme on the page. (If you can’t make up a meme, borrow
one from the web.)
d. headers h1 and h2
e. paragraph p
2. Create a resume page. This page must include the following
tags.
a. head section with a title
b. body section with text and a link to your home page
c. The content should include your name, email address, education,
employment history, and technical skills. You may create fake
contact information on your website if you do not wish to have
personal information on the web.
3. In both HTML pages, just after the html tag, include an HTML
comment that includes your name, the date, and the URL where your
website is posted.
4. Create and use a CSS style file in both web pages. Each selector
in the CSS file must be used in one or both HTML files. The style
file must include the following.
a. the CSS file must be external to the HTML files
b. at least one each of element, id, and class selectors
c. one background color declaration
d. one text color declaration
e. two fonts type declarations
f. two text alignment declarations
g. change the default hyperlink hover color
h. place text on top of an image (for the meme design)
5. Add a favicon to your site. See
https://www.favicon-generator.org/
6. Publish your pages at your ASU personal hosting space. See
HTML_CSS.pptx for details.
HOME.html
<html>
<head>
<title>Your Name</title><!--Include
Name and Date-->
</head>
<body>
<h1>H1 TAG</h1>
<h2>H3 TAG</h2>
<p>Paragraph</p>
<h3><a href="resume.html"
target="_blank">Click here to go to my resume
page</a></h3>
<img src="#"><!--Instead of #, include the
Link-->
</body>
</html>
RESUME.html
<html>
<head>
<title>YOUR NAME</title><!--Include
Name and Date-->
</head>
<body>
<h3><a href="home.html"
target="_blank">Click here to go to my Home page</a>
</h3>
<h1>YOUR NAME</h1>
<h2>YOUR EMAIL</h2>
<h3>YOUR EDUCATION</h3>
<h4>YOUR EMPLOYMENT HISTORY</h4>
<h4>Technical Skills</h4>
</body>
</html>
In CSS:
.id
{
background-colour: blue;
font-family: sans-serif;
text-align : center;
}
a:hover
{
background-colour: blue;
}
a is the name of the button or anything in particular where you want to hover to change the colour.
give a div class=id in both the HTML in your own preference.
// I need help in creating and publishing a website with two pages for this assignment,...
I need a small website that to where I need to interlink a CSS file into the HTML file. I don't know to save the files to have to be able to run with the CSS attributes show up in the browser when I do click the "open with" after I click on the saved HTML file. Basically when I copy files from the internet, to see if the HTML and CSS would interlink and run, the HTML would run...
Creating the Home and Template Pages Overview In this assignment, you will start building your Web site for your fictional organization by creating a homepage using HTML5 and some of the key elements that define a Web page. You are required to use either a simple text editor to write your code, or an enhanced text editor such as Brackets. Note: Microsoft Word is not a good tool for developing code because it is a document processor and not a...
Can someone plz help me??? I would like a website that has to do with guitars or something to do with music, someone asked me what kind of website I would like to have and that would be awesome. The attributes to be included, are below. I need a small website that to where I need to interlink a CSS file into the HTML file. I don't know to save the files to have to be able to run with...
Create a storyboard for a four (4) page Website (one (1) home page and three (3) sub pages) and one (1) Cascading Style Sheet (.css). Using Microsoft Word, Microsoft Visio, or Dia, create a diagram of the layout and navigation structure. Explain the effects that the Cascading Style Sheet (.css) will have on the Web page. There must be a minimum of two (2) changes. Be sure to include detail. (Example: The Cascading Style Sheet (.css) will make the background...
This is your opportunity to be creative! You are required to create a minimum of two HTML pages. The first required web page is your Home Page, which is about you. The second web page describes a place to which you have traveled or would like to travel. Each of your web pages will be graded for content, creativity, and for appropriate use of the HTML statements that have been discussed in class. You must use a text editor and...
Could you create a website based on html and css? Details in the
below: Note: You can put link that I can download
that folder
Based on Project 2-1, do the necessary changes to have a webpage
structure of a header, main, and footer sections. Then:
•Set the width of the page to 700px
•Use the font family starting with Verdana
•Move one of the images from your Project 2-1 to the header.
•Set the width of the header image...
Create a web page: That includes an unordered list describing 2 – 3 courses you are taking this semester The text My Current Courses should be contained within <h2> tags The page should include a hyperlink to the home page Write the HTML code so one your listed courses is configured by using a class named favorite The web page should use the external style sheet named ass3.css Save the page as current.html
i need help with this homework webpage and code too: The webpage must include: Global Structure Tags Text Tags Images Your first page must be named index.html Include a table within your site, challenge yourself to add a header in the table, and choose interesting border and/or cell formatting. Include a hyperlink within your site. Include an image in your site. Include a form in your site to demonstrate understanding of a variety of form components (the form does not...
Answer ASAP please
Project l All assignments must be submitted as a zip file through blackboard that contains all elements necessary (HTML, CSS, Images, etc)-I will be unzipping the files and opening them from and running them in Visual Studio Code's Live Server Using HTML and CSS, create a personal website for yourself. The purpose of this site will be to act as a home page and portal and should show off both your HTML and CSS skills along with...
2 Apply Your Knowledge Reinforce the skills and apply the concepts you learned in this chapter Styling a Webpage Instructions: In this exercise, you will use your text editor to create external, embedded, and inline styles for the Durango Jewelry and Gem Shop home page. You will style the sections of the semantic wireframe header, nav, main, and tooter and a div element that surrounds all of the content to center the content on the page. You will also float...