Computer Science, asked by IrtikaAsif, 5 months ago

write a code in HTML to insert an image and also write a paragraph in void and Italic form also use the font tag​

Answers

Answered by Anonymous
2

Explanation:

<html>

<head>

<style>

.gfg {

margin: 3%;

position: relative;

}

.first-txt {

position: absolute;

top: 17px;

left: 50px;

}

.second-txt {

position: absolute;

bottom: 20px;

left: 10px;

}

</style>

</head>

<body>

<div class="gfg">

<img src="gfg.png">

<h3 class="first-txt">

GeeksforGeeks

</h3>

<h3 class="second-txt">

A computer science portal

</h3>

</div>

</body>

</html>

Similar questions