[Solved] Having some problems, not sure if it’s even possible [closed]


Yes, CSS is required. HTML just builds the layout and framework of the page, while CSS styles it and makes it visually appealing / formatting how the page fits with everything. You should learn CSS. It’s an excellent language that fits with HTML, and it will be very useful for later website development. Also, the tags <font> and <center> have been obsolete, so you shouldn’t waste your time using them. You should look at the documentation for up to date HTML5 tags. Learning CSS will make this process a whole lot easier.

CSS:

.hello {
    color: purple;
    font-family: Georgia, Times, Times New Roman, serif;
    text-align: center;
}

HTML:

<p class="hello">Hello!</p>

5

solved Having some problems, not sure if it’s even possible [closed]