foliojs / pdfkit

A JavaScript PDF generation library for Node and the browser
http://pdfkit.org/
MIT License
9.84k stars 1.15k forks source link

My Portfolio using HTML and CSS #1537

Closed Rushikesh1163 closed 2 months ago

Rushikesh1163 commented 2 months ago

HTML <!DOCTYPE html>

My Portfolio

My Portfolio

About Me

Hello! I am a web developer with a passion for creating beautiful and functional websites. I have experience in HTML, CSS, JavaScript, and more.

Skills

  • HTML
  • CSS
  • JavaScript
  • React
  • Node.js

Projects

Project One

A description of the project.

Project Two

A description of the project.

Project Three

A description of the project.

Contact

You can reach me at: badboy@gmail.com

© 2024 My Portfolio

CSS

body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f4f4f4; }

.container { width: 80%; margin: auto; overflow: hidden; }

header { background: #333; color: #fff; padding-top: 30px; min-height: 70px; border-bottom: #77aaff 3px solid; }

header a { color: #fff; text-decoration: none; text-transform: uppercase; font-size: 16px; }

header ul { padding: 0; list-style: none; }

header li { float: left; display: inline; padding: 0 20px 0 20px; }

header #branding { float: left; }

header #branding h1 { margin: 0; }

header nav { float: right; margin-top: 10px; }

header .highlight, header .current a { color: #77aaff; font-weight: bold; }

header a:hover { color: #77aaff; font-weight: bold; }

showcase {

min-height: 400px;
background: url('showcase.jpg') no-repeat 0 -400px;
text-align: center;
color: #fff;

}

showcase h1 {

margin-top: 100px;
font-size: 55px;
margin-bottom: 10px;

}

showcase p {

font-size: 20px;

}

about, #skills, #projects, #contact {

padding: 20px 0;

}

about h2, #skills h2, #projects h2, #contact h2 {

text-align: center;
margin-bottom: 20px;
color: #333;

}

about p, #skills ul, #projects .project, #contact p {

margin: 20px auto;
text-align: center;
max-width: 600px;

}

skills ul {

list-style-type: none;
padding: 0;

}

skills li {

background: #77aaff;
color: #fff;
margin: 5px 0;
padding: 10px;

}

.project { background: #fff; padding: 10px; margin: 20px 0; border: 1px solid #ddd; }

footer { text-align: center; padding: 10px 0; background: #333; color: #fff; }