0% found this document useful (0 votes)
13 views4 pages

Assignment 2x

This document is an HTML assignment by Kanveer Singh for a front-end development task. It includes structured content with headings, images, and links, as well as CSS styles for formatting. The document showcases a nested unordered list and provides navigation links to the top and bottom of the page.

Uploaded by

kanveeraulakh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views4 pages

Assignment 2x

This document is an HTML assignment by Kanveer Singh for a front-end development task. It includes structured content with headings, images, and links, as well as CSS styles for formatting. The document showcases a nested unordered list and provides navigation links to the top and bottom of the page.

Uploaded by

kanveeraulakh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

SEC FRONT END DEVELOPMENT ASSIGNMENT

KANVEER SINGH

2336209

BSC PHYSICAL SCIENCE WITH CHEMISTRY

<!DOCTYPE html>

<html>

<head>

<title>Kanveer Assignment</title>

<style>

Body {

Background-color: #f0f0f0;

Color: #222;

H1 {

Text-align: center;

Color: black;

H2 {

Color: green;

H3, h4 {

Color: #444;

}
Img {

Border: 5px solid #333;

Display: block;

Margin: 20px auto;

OL LI::MARKER {

Color: #008000;

UL LI::MARKER {

Color: #556B2F;

A:link {

Color: #0000ff;

A:visited {

Color: #800080;

A:hover {

Color: #ff4500;
Text-decoration: underline;

A:active {

Color: #ff0000;

</style>

</head>

<body>

<a name=”top”></a>

<a href=”#bottom”>GO TO BOTTOM</a>

<h1>The Image is Added Here</h1>

<img src=”image.jpg” height=”325” width=”200” hspace=”500”>

<h2>Website is Here</h2>

<a href=https://google.com target=”_blank”>Google</a>

<h2>GeeksforGeeks</h2>

<h3>Nested Unordered List</h3>

<h4>GeeksforGeeks Course List:</h4>

<ul>

<li>DSA</li>

<ul type=”circle”>
<li>Array</li>

<li>Linked List</li>

<li>Stack</li>

<li>Queue</li>

</ul>

<li>Web Technologies</li>

<ul type=”circle”>

<li>HTML</li>

<li>CSS</li>

<li>Java</li>

</ul>

<li>Aptitude</li>

<li>GATE</li>

<li>Placement</li>

</ul>

<a href=”#top”>GO TO TOP</a>

<a name=”bottom”></a>

</body>

</html>

You might also like