Can HTML and CSS be in same structure?
I never knew it was possible to add <html> AND CSS within the same structure and elements without having them separated. I thought If I were to build a page, that I have to start HTML and work to CSS. I was messing with the code and came up with this and it works so far. <html><head> <style type="text/css"> body { font-size:16px; font-family:Helvetica; color:#dddddd; background-color:#111111; }