{"id":941,"date":"2025-01-19T12:12:29","date_gmt":"2025-01-19T12:12:29","guid":{"rendered":"https:\/\/codebox.keyframetechsolution.com\/?p=941"},"modified":"2025-03-08T15:14:18","modified_gmt":"2025-03-08T15:14:18","slug":"personal-portfolio-website-html-css-js","status":"publish","type":"post","link":"https:\/\/codebox.keyframetechsolution.com\/personal-portfolio-website-html-css-js\/","title":{"rendered":"How to Build a Personal Portfolio Website with HTML CSS and JavaScript"},"content":{"rendered":"<h2><span data-preserver-spaces=\"true\">Introduction<\/span><\/h2>\n<p><span data-preserver-spaces=\"true\">A personal portfolio website is <\/span><span data-preserver-spaces=\"true\">important<\/span><span data-preserver-spaces=\"true\"> for showcasing your skills, projects, and achievements. <\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Whether <\/span><span data-preserver-spaces=\"true\">you\u2019re<\/span><span data-preserver-spaces=\"true\"> a web developer, designer, photographer, or any other professional, having an online portfolio allows you to demonstrate your expertise to potential clients or employers. <\/span><\/p>\n<p><span data-preserver-spaces=\"true\">In this guide, <\/span><span data-preserver-spaces=\"true\">we\u2019ll<\/span><span data-preserver-spaces=\"true\"> walk through the process of creating a personal portfolio website using HTML, CSS, and JavaScript. <\/p>\n<p>Let&#8217;s get started.<\/span><\/p>\n<p>\u2705\u00a0<strong>Watch Live Preview<\/strong>\u00a0\ud83d\udc49\ud83d\udc49<\/p>\n<p><iframe title=\"YouTube video player\" src=\"https:\/\/www.youtube.com\/embed\/fSc53LzE9OU?si=farHC9NfS2IHy9BJ\" width=\"100%\" height=\"450\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n<p><a href=\"#conclusion\">Click Here to Download the Code<\/a><\/p>\n<h3><span data-preserver-spaces=\"true\">Step 1: Approach to Planning <\/span>Your Portfolio\u2019s Content:<\/h3>\n<p><span data-preserver-spaces=\"true\">Before diving into coding, <\/span><span data-preserver-spaces=\"true\">it\u2019s<\/span> <span data-preserver-spaces=\"true\">important<\/span><span data-preserver-spaces=\"true\"> to plan the structure and content of your website. It includes the following sections:<\/span><\/p>\n<ul>\n<li><strong><span data-preserver-spaces=\"true\">Home<\/span><\/strong><span data-preserver-spaces=\"true\">: An introduction to who you are, what you do, and your professional background.<\/span><\/li>\n<li><strong>About<\/strong><span data-preserver-spaces=\"true\"><strong>:<\/strong> A more detailed section about your education, experience, and skills.<\/span><\/li>\n<li><strong>Projects<\/strong><span data-preserver-spaces=\"true\"><strong>:<\/strong> Showcase your best work, including images, descriptions, and links to live projects or code repositories.<\/span><\/li>\n<li><strong>Contact<\/strong><span data-preserver-spaces=\"true\"><strong>:<\/strong> A form or contact details so visitors can reach you.<\/span><\/li>\n<li><strong>Blog<span data-preserver-spaces=\"true\"> (Optional)<\/span><\/strong><span data-preserver-spaces=\"true\">: If you write about your field, you can add a blog section to showcase your thoughts or share knowledge.<\/span><\/li>\n<\/ul>\n<p><strong>Similar Posts:<\/strong> <a href=\"https:\/\/codebox.keyframetechsolution.com\/personal-portfolio-website-react\/\">How to Build a Personal Portfolio Website Using React.js (Source Code)<\/a><\/p>\n<h3>Step 2: Set Up Your Project Folder<\/h3>\n<p><span data-preserver-spaces=\"true\">Once you have an idea of what will be included, <\/span><span data-preserver-spaces=\"true\">it\u2019s<\/span><span data-preserver-spaces=\"true\"> time to set up the project structure. Create a folder on your computer and add the following files inside it:<\/span><\/p>\n<ul>\n<li><strong><strong><span data-preserver-spaces=\"true\">index.html<\/span><\/strong><\/strong><\/li>\n<li><strong><strong><span data-preserver-spaces=\"true\">style.css<\/span><\/strong><\/strong><\/li>\n<li><strong><strong><span data-preserver-spaces=\"true\">script.js<\/span><\/strong><\/strong><\/li>\n<\/ul>\n<h2><strong><span data-preserver-spaces=\"true\">Source Code<\/span><\/strong><\/h2>\n<h3><strong><span data-preserver-spaces=\"true\">HTML Code<\/span><\/strong><\/h3>\n<div class=\"code-container\">\n<div class=\"toolbar\">\n<div class=\"actions\">\n        <span><\/span><br \/>\n        <span class=\"yellow\"><\/span><br \/>\n        <span class=\"green\"><\/span>\n      <\/div>\n<div class=\"title\">index.html<\/div>\n<\/p><\/div>\n<div class=\"code-content\">\n<pre><code class=\"language-markup\">\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html lang=\"en\"&gt;\r\n&lt;head&gt;\r\n  &lt;meta charset=\"UTF-8\"&gt;\r\n  &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\r\n  &lt;title&gt;Personal Portfolio Website&lt;\/title&gt;\r\n  &lt;link rel=\"stylesheet\" href=\"style.css\"&gt;\r\n  &lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/4.7.0\/css\/font-awesome.min.css\"&gt;\r\n  &lt;script src=\"https:\/\/code.jquery.com\/jquery-3.5.1.min.js\"&gt;&lt;\/script&gt;\r\n  &lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/typed.js\/2.0.11\/typed.min.js\"&gt;&lt;\/script&gt;\r\n  &lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/waypoints\/4.0.1\/jquery.waypoints.min.js\"&gt;&lt;\/script&gt;\r\n  &lt;link rel=\"stylesheet\" href=\"https:\/\/fonts.googleapis.com\/css2?family=Poppins:wght@400;500;600;700&amp;family=Ubuntu:wght@400;500;700&amp;display=swap\"&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n&lt;!-- CODE --&gt;\r\n\r\n&lt;script src=\"script.js\"&gt;&lt;\/script&gt;\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/code><\/pre>\n<\/p><\/div>\n<\/div>\n<h3><strong><span data-preserver-spaces=\"true\">CSS Code<\/span><\/strong><\/h3>\n<div class=\"code-container\">\n<div class=\"toolbar\">\n<div class=\"actions\">\n        <span><\/span><br \/>\n        <span class=\"yellow\"><\/span><br \/>\n        <span class=\"green\"><\/span>\n      <\/div>\n<div class=\"title\">style.css<\/div>\n<\/p><\/div>\n<div class=\"code-content\">\n<pre><code class=\"language-markup\">\r\n&lt; \/* Your CSS code here *\/ &gt;\r\n&lt; * { &gt;\r\n\r\n&lt; margin: 0; &gt;\r\n&lt; padding: 0 &gt;\r\n&lt; box-sizing: border-box; &gt;\r\n&lt;     text-decoration: none; &gt;\r\n&lt;     } &gt;\r\n      <\/code><\/pre>\n<\/p><\/div>\n<\/p><\/div>\n<h3><strong><span data-preserver-spaces=\"true\">JavaScript Code<\/span><\/strong><\/h3>\n<div class=\"code-container\">\n<div class=\"toolbar\">\n<div class=\"actions\">\n        <span><\/span><br \/>\n        <span class=\"yellow\"><\/span><br \/>\n        <span class=\"green\"><\/span>\n      <\/div>\n<div class=\"title\">script.js<\/div>\n<\/p><\/div>\n<div class=\"code-content\">\n<pre><code class=\"language-markup\">\r\n&lt; \/\/ JavaScript Code &gt;\r\n      <\/code><\/pre>\n<\/p><\/div>\n<\/div>\n<p><strong>You may also like:<\/strong> <a href=\"https:\/\/codebox.keyframetechsolution.com\/restaurant-website-html-css-js\/\">Create a Restaurant Website using HTML CSS and JavaScript<\/a><\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>By following these steps, you can create a professional website to highlight your personal projects, skills, work experience, client testimonials, about section, contact details, and more.<\/p>\n<p>Whether you&#8217;re a beginner or an experienced developer, building a portfolio website is a valuable project that showcases your capabilities and sets you apart from the competition.<\/p>\n<p><strong><i class=\"fa fa-download\" style=\"color: #046bd2;\"><\/i> 19 people bought this\u00a0<\/strong><\/p>\n<p>Hurry, Get it Now for Only <i class=\"fa fa-rupee\" style=\"color: #046bd2;\"><\/i><span style=\"color: #046bd2;\">50<\/span> <del>\u20b9100<\/del><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction A personal portfolio website is important for showcasing your skills, projects, and achievements. Whether you\u2019re a web developer, designer, [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":944,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"footnotes":""},"categories":[320],"tags":[327,323,325,326],"class_list":["post-941","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-portfolio","tag-personal-portfolio-website-design","tag-personal-portfolio-website-source-code","tag-personal-portfolio-website-using-html-and-css","tag-responsive-personal-portfolio-website"],"acf":[],"_links":{"self":[{"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/posts\/941","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/comments?post=941"}],"version-history":[{"count":22,"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/posts\/941\/revisions"}],"predecessor-version":[{"id":1723,"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/posts\/941\/revisions\/1723"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/media\/944"}],"wp:attachment":[{"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/media?parent=941"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/categories?post=941"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codebox.keyframetechsolution.com\/wp-json\/wp\/v2\/tags?post=941"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}