0

Are graphics only made in CSS or can it also be in HTML5?

please

4th Nov 2019, 4:13 PM
Manuela Degboevi
Manuela Degboevi - avatar
3 Respostas
5th Nov 2019, 6:59 AM
Gordon
Gordon - avatar
+ 1
You can insert images into your web document with the <img> tag. But, I think you are asking about creating graphics like so many coders do here. You need html <div> tags as holders for parts of the graphic you want to create. Sometimes many divs are used. Then you need css and creativity to draw and style the parts of the graphic you want to make. Browse around sololearn to see magnificent css graphics. For example, look at Mitali and her codes for inspiration. Please do not steal or claim as your own, other people's codes, but browse and research for inspiration.
5th Nov 2019, 1:11 AM
Xyenia 🦉
Xyenia 🦉 - avatar
0
They can be used in HTML5, but you have to know CSS syntax. The first method is to male it inside a tag, let's see an example with p tag: <p style="font-family: arial">Text</p> The second method is to write it in a style tag: <style> body: background-color: blue; </style> But this was all mentioned in the couse I believe, so please continue the courses before asking for any new methods.
4th Nov 2019, 4:54 PM
Aymane Boukrouh
Aymane Boukrouh - avatar