0% found this document useful (0 votes)
4 views2 pages

HTML Exercices

The document contains multiple HTML exercises showcasing different web design elements. Exercise 1 features a black background with text highlighting powerful APIs, Exercise 4 includes a background image with a travel theme, and Exercise 5 presents a simple login form with username and password fields. Each exercise demonstrates various HTML and CSS techniques for web development.

Uploaded by

aparnacse
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)
4 views2 pages

HTML Exercices

The document contains multiple HTML exercises showcasing different web design elements. Exercise 1 features a black background with text highlighting powerful APIs, Exercise 4 includes a background image with a travel theme, and Exercise 5 presents a simple login form with username and password fields. Each exercise demonstrates various HTML and CSS techniques for web development.

Uploaded by

aparnacse
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

EXERCISE 1

<!DOCTYPE html>
<html>
<head>
<title>exercise 1</title>
</head>
<body style="background-color:black;">
<h4><p style="color:skyblue">Designed for Developers</p></h4>
<h1><p style="color:white">The World's most powerful and easy-to-use APIs</p></h1>
<br>
<br>
<h3><p style="color:grey">We agonize over the right abstractions so your<br> team
s don't need to stitch together disparate systems<br> or spend months integrating paym
ents functionality</p></h3>
</body>
</html>

EXERCISE 4

<!DOCTYPE html>
<html>
<head>
<style>
body {
background-image: url("[Link]
[Link]");
background-repeat: no-repeat;
background-text:<h1> Take a Break. Go for a trip.</h1>
}
</style>
</head>
<body>

<h1><center> Take a Break. Go for a trip.</h1></center>

</body>
</html>
EXERCISE 5

<!DOCTYPE html>
<html>
<body style="background-color:lightgreen;">
<h1><center>Login</center></h1>

<form>
<p><center><label for="fname">Username:</
label>
<input type="text" id="fname" name="fname" ></
center></p>
<p><center><label for="lname">Password:</
label>
<input type="text" id="lname" name="lname" ></
center></p>
</form><br>
<center><button type="submit" form="nameform" va
lue="Submit">Submit</button></center>

</body>
</html>

You might also like