HTML Exercises

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Html & css,

1
html / ( browser)
. browser;
.

<html>
<body>
<p>



html
browser .
</p>
<p>

.
</p>
</body>
</html>

2
html ( css). web
http://dabblet.com/
1. This is a paragraph. ;
2.
<body><html>
<head>
<style>
body {background: red}
h1 {
color:yellow;
font-family:verdana;
font-size:300%;
}
p {
color:red;
font-family:courier;
font-size:160%;
}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>

3
web http://dabblet.com/
<html>
<head>
<style>
body {background-color:lightgray}
h1 {color:red}
p

{color:yellow}

</style>
</head>
<body>
<a href="http://www.sch.gr"> !</a>
<h2> ...</h2>
<img src="http://www.w3schools.com/images/w3schools_green.jpg">
!
</body>
</html>

You might also like