- 2
Write an HTML programme
write a HTML programme to format a paragraph and by applying bold and underline effect to the heading of paragraph and text color should be yellow and paragraph should be align in center
3 Respostas
+ 2
@Calvin: it sounds like a homework ^^
+ 1
Where did you get the question from?
0
firstly html is not a programming language..
<head>
<style>
h1{
text-decoration: underline;
color:yellow;
}
p{
text-align:center;
}
</style>
</head>
<body>
<h1>My Heading</h1>
<p>
Something
</p>
</body>