Tutor profile: Gouri B.
Questions
Subject: Web Design
Explain how can you set an image as a background on web pages?
To set an image as a background on web page, point the body background to the name of your image you want to set as a background as shown below. </head>tag. <body background= “picture.gif”> You can also fix the background image, so while using the scroll bar in the browser, it does not move. To do this add the BGPROPERTIES tag as shown below <body background = “picture.gif”bgproperties=”fixed”>
Subject: HTML Programming
How do you create a link that will connect to another web page when clicked?
To create hyperlinks, or links that connect to another web page, use the href tag. The general format for this is: <a href=”site”>text</a> Replace “site” with the actual page URL that is supposed to be linked to when the text is clicked.
Subject: CSS
How do we make a rounded corner by using CSS?
We can make a rounded corner by using the property “border-radius”. We can apply this property to any element. Example: <html> <head> <style> #rcorners1 { border-radius: 25px; background: #715751; padding: 20px; width: 200px; height: 150px; } </style> </head> <body> <h1>The border-radius Property</h1> <p>Rounded corners for an element with a specified background color:</p> <p id="rcorners1">Rounded corners!</p> </body> </html>
Contact tutor
needs and Gouri will reply soon.