Write an HTML programme | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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

15th Jun 2017, 12:01 PM
Adarsh Singh
Adarsh Singh - avatar
3 Answers
+ 2
@Calvin: it sounds like a homework ^^
15th Jun 2017, 4:45 PM
visph
visph - avatar
+ 1
Where did you get the question from?
15th Jun 2017, 12:15 PM
Calviղ
Calviղ - avatar
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>
15th Jun 2017, 12:14 PM
Мг. Кнап🌠
Мг. Кнап🌠 - avatar