Lab Assignment 1
Lab Assignment 1
01
Course Code: ICT - 2106
Course Name: Internet and Web Technology Lab
Submitted to:
Mehrin Anannya
Assistant Professor
Submitted By:
Hrishikesh Kanu Bintu
ID: 2060
Institute of Information Technology
Jahangirnagar University
Project Overview:
First Webpage:
This HTML code creates an webpage where users can get football
updates, informations, fixtures and can buy football related things like
jerseys, boots, socks etc. Our platforms name is “We Make Footballers”.
There is a Form. Where there are two input fields. In the first one it
inputs users name, and in the second one it inputs users favorite club.
And there is also a selection field, where user can mark his favorite
player among three.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"
/>
<title>We Make Footballers</title>
<link rel="icon" type="image/x-icon" href="Images/footballod.png" />
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
nav {
background-color: #444;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
padding: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
.form-col {
background-color: aqua;
padding: 20px;
width: 300px;
float: left;
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
bottom: 0;
width: 100%;
}
.content {
text-align: center;
margin-top: 20px;
height: 600px;
}
img {
width: 700px;
}
.left {
width: 500px;
float: left;
}
.right {
width: 600px;
float: right;
margin-top: 130px;
margin-left: 300px;
}
</style>
</head>
<body>
<header>
<h1>We Make Footballers</h1>
</header>
<nav>
<a href="#">Home</a>
<a href="#">News</a>
<a href="#">Teams</a>
<a href="#">Matches</a>
<a href="#">Contact</a>
</nav>
<main>
<div class="content">
<!-- <div class="left"> -->
<h2>Welcome to our Football Website!</h2>
<p>
Here you can find the latest news, updates, and information
about your
favorite football teams and matches. To verify our provided
information's accuracy you may go to
<a href="https://www.wikipedia.org/"
target="_blank">Wikipedia</a>.
</p>
<p>
Must <a href="second.html" target="_blank">Click</a> This.{Our
Second
Website}
</p>
<div class="left">
<img src="Images/football.jpg" alt="Football" /><br />
</div>
<footer>
<p>Contact Us</p>
<p>
On
<a
href="https://www.facebook.com/this.is.messi.fan.Hrishi"
target="_blank"
>FaceBook</a
> On
<a href="https://www.instagram.com/hrishikesh_kanu/"
target="_blank"
>Instagram</a
> On
<a
href="https://www.youtube.com/@RevitalizeUh_with_Hrishi"
target="_blank"
>YouTube</a
>
</p>
<p>Cell Phone-+8801754-990111{WhatsApp}</p>
<p>
© 2024 Football Website. Always Remember <b>Leo Messi</b> is
the
best. All Rights Reserved.
</p>
</footer>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"
/>
<title>We Make Footballers</title>
<link rel="icon" type="image/x-icon" href="Images/footballod.png" />
<style>
* {
box-sizing: border-box;
}
header {
background-color: rgb(167, 196, 193);
padding: 5px;
text-align: center;
font-size: 30px;
color: rgb(38, 38, 38);
}
body {
font-family: Arial, Helvetica, sans-serif;
}
nav {
float: left;
width: 25%;
height: 500px;
background-color: gray;
padding: 20px;
}
nav ul {
list-style-type: none;
padding: 0px;
}
article {
float: left;
padding: 20px;
width: 75%;
background-color: #f1f1f1;
height: 500px;
}
section::after {
content: "";
display: table;
clear: both;
text-align: center;
}
<section>
<nav>
<ul>
<li>
<a
href="https://www.daraz.com.bd/products/assassin14high-top-
soccer-shoes-mens-and-womens-broken-nailstfspikeagchildrens-non-slip-
grass-training-brush-shoe-i323114964-
s1535365940.html?spm=a2a0e.searchlist.sku.1.43ff3f40tLFVxg&search=1"
target="_blank"
>Football Shoes</a
>
</li>
<br />
<li><a href="#">Football Socks</a></li>
<br />
<li><a href="#">Football Jerseys</a></li>
<br />
<li><a href="#">Football Training Cones</a></li>
<br />
<li><a href="#">Our Different Products related to
Football</a></li>
</ul>
</nav>
<article>
<h1>Football</h1>
<p>
Football is the game which is mostly played all over the world.
Its
not just a game, its an emotion.
</p>
<p>
Now we believe, to be one of the best players, you must need
instruments which best players used. And training is a must in
this
case. So you can get the official boots, socks, training or
drilling
cones which Professional players like <b>Messi</b>,Ronaldo
usually
used in their ages. And we are working on our website. Soon we
will
launch another program where you can learn basic skills &
techniques
which great players use in their daily matches. You can learn
skills
like Neymar from us.
</p>
<p>
Always remember, <b>To be the best, you must learn from the
Best</b>.
Keeping it on mind we will hire professional players to teach
you
Football. So stay with us.
</p>
<p>
You can go back to our first webpage
<a href="index.html" target="_blank">clicking this</a>.
</p>
</article>
</section>
<footer>
<p>Contact Us</p>
<p>
On
<a
href="https://www.facebook.com/this.is.messi.fan.Hrishi"
target="_blank"
>FaceBook</a
> On
<a href="https://www.instagram.com/hrishikesh_kanu/"
target="_blank"
>Instagram</a
> On
<a
href="https://www.youtube.com/@RevitalizeUh_with_Hrishi"
target="_blank"
>YouTube</a
>
</p>
<p>Cell Phone-+8801754-990111{WhatsApp}</p>
<p>
© 2024 Football Website. Always Remember <b>Leo Messi</b> is
the
best. All Rights Reserved.
</p>
</footer>
</body>
</html>
First Webpages Outlook:
After Submission 2nd Page Outlook:
Folder and Files:
Learning Outcomes: