In: Computer Science
You are to create a page that has four images that are links to other schools in the New England area. Each image is to be controlled in size by a CSS responsive design. The page is to appear balanced by an appropriate, complimentary, background color. White is not an option as a background color. Look up how to make image links on W3Schools.There is to be a small repeated background image that appears on the right side of the page but not at the edge of the page. There is to be a header banner in a header section (look up "header" tag on W3Schools).The link images are to run vertically down the screen but they may not cover any part of the background image or the header banner.All images are to be in good taste and should represent the site to which they connect. The image does not have to be an exact image of that school but it has to be related.You can't use a fish image to represent a University.
Add an ordered list to your page that will list the current standings of the top eight teams in the National Football League. The list must be styled with CSS and can not use any of the default colors, fonts, or sizes. The first letter of each team's name must be a different color.No content may be against any of the screen edges.Make sure that your submission includes all folders required in your site structure.
index.html
<html>
<head>
<title>Welcome to my website</title>
<style>
body{
background-color: pink;
}
div{
background-image:
url("https://images.pexels.com/photos/1020315/pexels-photo-1020315.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
background-repeat: repeat;
}
ul {
list-style-type: none;
margin: 15 15;
padding: 10 10;
overflow: hidden;
}
li:after{
content: "\A";
white-space: pre;
}
h1{
text-align: center;
font-family: "Comic Sans MS", cursive, sans-serif;
}
ol li{
list-style-type: none;
font-family: "Comic Sans MS", cursive, sans-serif;
}
div.repeat{
width: 300px;
height: 300px;
float: right;
background-color: #eee;
background-image:
url("https://images.pexels.com/photos/1020315/pexels-photo-1020315.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500");
background-repeat: repeat;
resize: both;
overflow: hidden;
}
li::first-letter{
font-sie: 200%;
color: #8A2BE2;
}
</style>
</head>
<body>
<header>
<h1> Welcome to all the Universities </h1>
</header>
<div class="repeat">
</div>
<ul>
<li><a href="#"><img border="0"
src="https://i.pinimg.com/originals/d7/e1/af/d7e1af0d4edd9deca23d3447cc09c123.jpg"
width="100" height="100"/></a></li>
<li><a href="#"><img border="0"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS2fLp0aHIgXkbELm8fVjh44T5MTzeCU2bVDavqq8GGMSakfrIk"
width="100" height="100"/></a></li>
<li><a href="#"><img border="0"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ-8nhNHwJK8H6LuxaDE49N2J07oki8dac9E7O_Qqzyvh4IY6ff"
width="100" height="100"/></a></li>
<li><a href="#"><img border="0"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRBFD6naH0BAz9XrOw5ro5n2fTrkdLtsxCZySWbwHwmsBTwUysIdA"
width="100" height="100"/></a></li>
</ul>
<center>
<ol>
<li>First Team</li>
<li>Second Team</li>
<li>Third Team</li>
<li>Fourth Team</li>
<li>Fifth Team</li>
<li>Sixth Team</li>
<li>Seventh Team</li>
<li>Eightth Team</li>
</ol>
</center>
</body>
</html>
Output: