In: Computer Science
Purpose: To practice the use of HTML and CSS
Game Review Website
1. You will write a website for the fictitious company Game
Gurus.
The website will have a home page that you will design, as well as
pages created by each "guru."
(At least 2 gurus are required).
The home page will include:
o A description of the site
o A quote from each guru
o Links to manufacturers websites
o Links to the TopTen.html and GameOfTheWeek.html pages for each
guru
2. Each guru's page should link to the following pages:
- TopTen.html
o Listing the guru's favorite 10 games
o Providing a link to the home page and the Game of the Week
page
- GameOfTheWeek.html
o Providing a game review for one game
o Including lists of the guru's favorite games in three different
categories
o Including hyperlinks to TopTen.html and the home page
3. Each guru page will have a different style
Make your pages appealing/nice.
1)code for home page. I have created the structure . you can modify the content as per your wish .
<HTML>
<head>
<title>home page</title>
<style>
h1{color:blue;}
h2{color:red;}
a{color:red;}
</style>
</head>
<body>
<h1>description</h1>
<p>game gurus is a website which contains information related to some gurus</p>
<h2>quote from guru1</h2>
<p>Live a great life,never let the problems defeat you!</p>
<h2>quote from guru2</h2>
<p>You are a human!There is no need to become a super human.Humans are already super!Use your full potential and live and design your life consciously.</p>
<a href=“manfacturer.com”>Contact manufacturer</a>
<a href=“TopTen.html”>Top 10</a>
<a href=“GameOfTheWeek.html”>GameOfTheWeek</a>
</body>
</HTML>
2)code for guru1
<HTML>
<head>
<title> guru1</title>
<style>
a{color:red;}
h1{color:blue;}
</style>
</head>
<body>
<h1>guru1</h1>
<a href=“TopTen.html”>Top 10</a>
<a href=“GameOfTheWeek.html”>GameOfTheWeek</a>
</body>
</HTML>
3)code for guru2
<HTML>
<head>
<title> guru</title>
<style>
a{color:red;}
h1{color:blue;}
</style>
</head>
<body>
<h1>guru2</h1>
<a href=“TopTen.html”>Top 10</a>
<a href=“GameOfTheWeek.html”>GameOfTheWeek</a>
</body>
</HTML>
4) code for top ten html
<HTML>
<head>
<title> Top ten </title>
<style>
a{color:red;}
h1{color:blue;}
li{color:yellow;}
</style>
</head>
<body>
<h1>Top ten</h1>
<ul>
<li>game1</li>
<li>game2</li>
<li>game3</li>
<li>Game4</li>
<li>game5</li>
<li>game6</li>
<li>game7</li>
<li>game8</li>
<li>game9</li>
<li>game10</li></ul>
<a href=“Home.html”>Home</a>
<a href=“GameOfTheWeek.html”>GameOfTheWeek</a>
</body>
</HTML>
5)code for game of the week
<HTML>
<head>
<title> Game of the week </title>
<style>
a{color:red;}
h1{color:blue;}
li{color:yellow;}
</style>
</head>
<body>
<h1>Game of the week</h1>
<p>review of game1:<br>this game is awesome.</p>
<ul>
<li>game1</li>
<li>game2</li>
<li>game3</li>
<li>Game4</li>
<li>game5</li>
<li>game6</li>
<li>game7</li>
<li>game8</li>
<li>game9</li>
<li>game10</li>
</ul>
<a href=“Home.html”>Home</a>
<a href=“Top ten.html”>top ten</a>
</body>
</HTML>