Please can anyone help me with a sample of an html CV without using css? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Please can anyone help me with a sample of an html CV without using css?

I'm a beginner with html and i need help with a sample cv without using css

9th Feb 2020, 2:30 PM
Bhreezy Brains
Bhreezy Brains - avatar
3 Answers
0
without CSS your CV will have 0 styling. you could still make it but youll have to hope that it runs the same on every machine just as an FYI.
9th Feb 2020, 3:38 PM
Ronald Lemuel
Ronald Lemuel - avatar
0
Heres a basic layout that may get it working, I'll explain some of it after. <!DOCTYPE html> <html> <body> <div> <h1> NAME HERE</h1> </div> </body> </html> basically what this is doing is making a page with a headline that says "NAME HERE". you want to use divs to create new boxes inside of the body of your page. Think of it basically as adding a box inside of a box for storage purposes(keep your toys organized). Without styling your page will be all left leaning, though. Divs only go from top to bottom, they don't fill up the page and move content left or right, so you WILL need styling if you don''t want it to look basic. I can help you with CSS if you need.
9th Feb 2020, 3:46 PM
Ronald Lemuel
Ronald Lemuel - avatar
0
Alright bro thanks
9th Feb 2020, 5:14 PM
Bhreezy Brains
Bhreezy Brains - avatar