Write the HTML code for the following task:
a)Create on main web page with the title: "Placements Consultants"
b)Background color of the pages should be "orange"
c)Text color should be blue
d)Pages linked with:
Software as "software.html"
Hardware as "hardware.html"
Marketings as "marketting.html"
f)Link color should be White. Visited link color should be Pink. Active link
color should be Yellow.
Answers
Answered by
4
<html>
<head>
<title>'placement consults' </title>
</head>
<body bgcolor="orange" text="blue" link= "white"
a link ="yellow" v link = "blue">
<ahref="software.html">software <\a>
<ahref="hardware.html">hardware<\a>
<ahref="marketing.html">marketing<\a>
</body>
</html>
plz mark as brainliest... if it was helpful...
<head>
<title>'placement consults' </title>
</head>
<body bgcolor="orange" text="blue" link= "white"
a link ="yellow" v link = "blue">
<ahref="software.html">software <\a>
<ahref="hardware.html">hardware<\a>
<ahref="marketing.html">marketing<\a>
</body>
</html>
plz mark as brainliest... if it was helpful...
Answered by
2
<html>
<head>
<title>Placements Consultants</title>
</head>
<body bgcolor="orange" text="blue" link="white" a link="yellow" v link="pink">
<a href="software.html">Software</a>
<a href="hardware.html">Hardware</a>
<a href="marketting.html">Marketings</a>
</body>
</html>
<head>
<title>Placements Consultants</title>
</head>
<body bgcolor="orange" text="blue" link="white" a link="yellow" v link="pink">
<a href="software.html">Software</a>
<a href="hardware.html">Hardware</a>
<a href="marketting.html">Marketings</a>
</body>
</html>
Similar questions