2nd Class 26/10/2022 [FRII]
First of all make 3 files named index.html, style.css & login.html. Then paste these codes to the each files.
index.html
<html>
<head>
<title>Online Tutor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Welcome to our website</h1>
<h2>Welcome to our website</h2>
<h3>Welcome to our website</h3>
<h4>Welcome to our website</h4>
<h5>Welcome to our website</h5>
<h6>Welcome to our website</h6>
<h1 id="header">Welcome to our wesite</h1>
<p id="para_1">I love my county. The name of my country is <b>Bangladesh</b>.
The name of my country is <b>Bangladesh</b>. The name of my country is <b>Bangladesh</b>
The name of my country is <b><u><i>Bangladesh</i></u></b></p> <p> Hello Bangladesh.</p>
<button><a href="login.html">Login</a></button>
</main>
</body>
</html>
style.css
h1{
color: red;
}
#header{
color: blue;
}
#para_1{
color: green;
font-size: 20px;
}
Iogin.html
<html> <body> <h1>Please Login</h1> </body> </html>
0 comments:
Post a Comment