Speci?cations Please use your text editor of choice to create orderup.css, and i
ID: 3741659 • Letter: S
Question
Speci?cations
Please use your text editor of choice to create orderup.css, and it must link as an external CSS.
orderup.css
For this orderup.css, you need to: • Must use at least one HTML selector that applies to all tags of a speci?c type. – i.e. body {...} • Must use at least one ID selector. – i.e. #myid {...} • Must use at least one Class selector – i.e. .alert{...} • Add one picture of your business on the front page, can be of you, random building, or some logo, or any picture (the point is to embed a picture in the webpage)
This is a simple assignment so if you do the things listed above, even if simple, you will get full credit. This assignment is designed for extra credit so I will give extra points to those who put some decent styling into their webpages (trust me it is worth the extra e?ort). Submit a word doc with the extra changes you made beyond the ones described above.
Explanation / Answer
Below are both css and html files ....u can check them
This is the css file---orderup.css
body {
background-color: lightblue;
}
#para1 {
text-align: center;
color: red;
}
.center {
text-align: center;
color: green;
}
This is HTML code..example.html
<html>
<head>
<link rel="stylesheet" type="text/css" href="orderup.css">
</head>
<body>
<h1 class="center">Green and center-aligned heading</h1>
<p id="para1">Hello World!</p>
<img src="https://www.3d-wallpapers.info/wp-content/uploads/3d-beautiful-wallpapers.jpg" alt="HTML5 Icon">
<p id="para1">Hello World!</p>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.