Sample project | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Sample project

31st Mar 2024, 10:20 AM
Samuel Mulugeta
Samuel Mulugeta - avatar
2 Answers
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>My Portfolio</title> <style> /* Add your CSS styles here */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f2f2f2; } header { background-color: #333; color: #fff; padding: 20px; text-align: center; } /* Add more styles as needed */ </style> </head> <body> <header> <h1>My Portfolio</h1> </header> <section id="about"> <h2>About Me</h2> <p>This is where you can write about yourself and your skills.</p> </section> <section id="projects"> <h2>Projects</h2> <div class="project"> <h3>Project 1</h3> <p>Description of Project 1</p> </div> <div class="project"> <h3>Project 2
31st Mar 2024, 10:20 AM
Samuel Mulugeta
Samuel Mulugeta - avatar
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>html5_template</title> <link rel="stylesheet" href="styles.css"> </head> <body> <h1>Page Title</h1> <script src="scripts.js"></script> </body> </html> that's all
31st Mar 2024, 10:39 AM
exez
exez - avatar