name="value"
.<!DOCTYPE html> <html lang="en-US"> <head> <title>This is the title tag</title> </head> <body> <p>My first paragraph.</p> <img src="w3schools.jpg" alt="W3Schools.com" width="104" height="142"> </body> </html>
<!DOCTYPE html> <html lang="en-US"> <head> <title>This is the title tag</title> <style> p.important { color:blue; } #pstyle1 { color: red; text-align: center; } </style> </head> <body> <p>My first paragraph.</p> <p class="important">This paragraph is important.</p> </body> </html>
<a href="http://google.com">This text will link to Google</a>
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>This is the title tag</title>
<style>
#pstyle1 {
color: red;
text-align: center;
}
</style>
</head>
<body>
<p>My first paragraph.</p>
<p id="pstyle1">My first paragraph.</p>
</body>
</html>
<!DOCTYPE html> <html lang="en-US"> <head> <title>This is the title tag</title> <style> #pstyle1 { color: red; text-align: center; } </style> </head> <body> <p>My first paragraph.</p> <p id="pstyle1">My first paragraph.</p> </body> </html>
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>This is the title tag</title>
</head>
<body>
<p style="color:green;">This paragraph is important</p>
</body>
</html>