56.8k views
4 votes
1. Write code to make a paragraph 'YELLOW' in color?

User NuAlphaMan
by
4.2k points

1 Answer

2 votes

Answer:

I will assume html.

<!DOCTYPE html>

<html>

<head>

<title>Hello World!</title>

<style>

#p {

color: rgb(255,255,0)

}

</style>

</head>

<body>

<p id="p">YELLOW</p>

</body>

</html>

Step-by-step explanation:

User Howard Hodson
by
4.4k points