Write CSS style rules to transform the following page. Note that the text font s
ID: 3707536 • Letter: W
Question
Write CSS style rules to transform the following page. Note that the text font size is 1em.
Guidelines:
You can utilize the following text to build the page.
This course presents introductions to many of the basic concepts, issues and techniques related to designing, developing and deploying websites. During the course, students will learn about Web design, HTML, XHTML, basic JavaScript, Dynamic HTML, and Cascading Style Sheets (CSS). Students will learn how to create sites both manually and through the use of website development software. Note: This is a technology course in a technology program, and it requires the purchase of software that may be used in subsequent courses as well as being suitable for commercial work beyond completion of degree studies.
Robbins, J. (2012). Learning web design: A beginner's guide to HTML, CSS, JavaScript, and web graphics (4th ed.). Sebastopol, CA: O'Reilly Media. ISBN: 978-1-449-31927-4 (print); 1449319270 (e-text).
Before
After
Welcome Q file:///C:/Users/Desktop/welcome.html a Search ?111 D Web Design This course presents introductions to many of the basic concepts, issues and techniques related to designing, developing and deploying websites. During the course, students will learn about Web design, HTML, XHTML, basic JavaScript, Dynamic HTML, and Cascading Style Sheets (CSS). Students will learn how to create sites both manually and through the use of website development software. Note: This is a technology course in a technology program, and it requires the purchase of software that may be used in subsequent courses as well as being suitable for commercial work beyond completion of degree studies. Required Text Robbins, J. (2012). Learning web design: A beginner's guide to HTML, CSS, JavaScript, and web graphics (4th ed.).Explanation / Answer
<!-- As font-family is not mentioned in the question please change font-family of style class and header class accordingly -->
<!DOCTYPE html>
<html>
<head>
<style>
h1.header{
text-align: left;
color: orange;
}
p.style {
text-align: center;
color: blue;
font-size: 1em;
}
</style>
</head>
<body>
<h1 class="header">Web Design</h1>
<p class="style">This course presents introductions to many of the basic concepts, issues and techniques related to designing, developing and deploying websites. During the course, students will learn about Web design, HTML, XHTML, basic JavaScript, Dynamic HTML, and Cascading Style Sheets (CSS). Students will learn how to create sites both manually and through the use of website development software. Note: This is a technology course in a technology program, and it requires the purchase of software that may be used in subsequent courses as well as being suitable for commercial work beyond completion of degree studies.</p>
<h1 class="header">Required Text</h1>
<p class="style">Robbins, J. (2012). Learning web design: A beginner's guide to HTML, CSS, JavaScript, and web graphics (4th ed.). Sebastopol, CA: O'Reilly Media. ISBN: 978-1-449-31927-4 (print); 1449319270 (e-text).</p>
</body>
</html>
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.