Skip to content

zarjay/Portfolio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Portfolio

<!doctype html>

<title>Personal Portfolio Website</title> <script src="https://kit.fontawesome.com/73eeb7bbf1.js" crossorigin="anonymous"></script> <style> *{ margin: 0; padding: 0; font-family: 'Poppins', sans-serif; box-sizing: border-box; } html{ scroll-behavior: smooth; } body{ background: #080808; color: #fff; } #header{ width: 100%; height: 100vh; background-image: url(https://scontent.fmnl25-5.fna.fbcdn.net/v/t1.15752-9/438203898_1127994608247808_7482794543686424435_n.png?_nc_cat=104&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeFStWEKKb1SBYQQkAfo61A4NsuSdru64fA2y5J2u7rh8KhQWJWOLo7vkbNpaU9PwsDBrwHYJSmnmb7sHkrr72Je&_nc_ohc=8XxxstgzsncQ7kNvgE_aNPy&_nc_ht=scontent.fmnl25-5.fna&oh=03_Q7cD1QGpWJGHQ2o56biSc54DL4rZt-Kq_-8ore9G7dI2cUsq3Q&oe=66772A2B); background-size: cover; background-position: right; } .container{ padding: 10px 10%; }

nav{ display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }

.logo{ width: 200px; }

nav ul li{ display: inline-block; list-style: none; margin: 10px 20px; }

nav ul li a{ color: #fff; text-decoration: none; font-size: 18px; position: relative; } nav ul li a::after{ content: ''; width: 0; height: 3px; background: #ff004f; position: absolute; left: 0; bottom: -6px; transition: 0.5s; } nav ul li a:hover::after{ width: 100%; } .header-text{ margin-top: 20%; font-size: 30px; } .header-text h1{ font-size: 60px; margin-top: 20px; } .header-text h1 span{ color: #ff004f; } /* ---------about----------- */ #about{ padding: 80px 0; color: #ababab; } .row{ display: flex; justify-content: space-between; flex-wrap: wrap; }

.about-col-1{ flex-basis: 35%; } .about-col-1 img{ width: 100%; border-radius: 15px; } .about-col-2{ flex-basis: 60%; }

.sub-title{ font-size: 60px; font-weight: 600; color: #fff; }

.tab-titles{ display: flex; margin: 20px 0 40px; } .tab-links{ margin-right: 50px; font-size: 18px; font-weight: 500; cursor: pointer; position: relative; } .tab-links::after{ content: ''; width: 0; height: 3px; background: #ff004f; position: absolute; left: 0; bottom: -8px; transition: 0.5s; }

.tab-links.active-link::after{ width: 50%; }

.tab-contents ul li{ list-style: none; margin: 10px 0; } .tab-contents ul li span{ color: #b54769; font-size: 14px; } .tab-contents{ display: none; }.tab-contents.active-tab{ display: block; }

/--------------services---------------/ #services{ padding: 30px 0; } .services-list{ display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-gap: 40px; margin-top: 50px; } .services-list div{ background: #262626; padding: 40px; font-size: 13px; font-weight: 300; border-radius: 10px; transition: background 0.5s, transform 0.5s; } .services-list div i{ font-size: 50px; margin-bottom: 30px; } .services-list div h2{ font-size: 30px; font-weight: 500; margin-top: 15px; } .services-list div a{ text-decoration: none; color: #fff; font-size: 12px; margin-top: 20px; display: inline-block; } .services-list div:hover{ background: #ff004f; transform: translate(-10); } /-----------portfolio-----------/ #portfolio{ padding: 50px 0; } .work-list{ display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); grid-gap: 40px; margin-top: 50px; } .work{ border-radius: 10px; position: relative; overflow: hidden; } .work img{ width: 100%; border-radius: 10px; display: block; transition: transform 0.5s; } .layer{ width: 100%; height: 0; background: linear-gradient(rgba(0,0,0,0.6), #ff004f); border-radius: 10px; position: absolute; left: 0; bottom: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 0 40px; text-align: center; font-size: 14px; transition: height 0.5s; } .layer h3{ font-weight: 500; margin-bottom: 20px; } .layer a{ margin-top: 20px; color: #ff004f; text-decoration: none; font-size: 18px; line-height: 60px; background: #fff; width: 60px; height: 60px; border-radius: 50%; text-align: center; } .work:hover img{ transform: scale(1.1); } .work:hover .layer{ height: 100%; } .btn{ display: block; margin: 50px auto; width: fit-content; border: 1px solid #ff004f; padding: 14px 50px; border-radius: 6px; text-decoration: none; color: #fff; transition: background 0.5s; } .btn:hover{ background: #ff004f; }

/-------------contact-----------/ .contact-left{ flex-basis: 35%; }
.contact-right{ flex-basis: 60%;
} .contact-left p{ margin-top: 30px; } .contact-left p i{ color: #ff004f; margin-right: 15px; font-size: 25px; } .social-icons{ margin-top: 30px; } .social-icons a{ text-decoration: none; font-size: 30px; margin-right: 15px; color: #ababab; display: inline-block; transition: transform 0.5s; } .social-icons a:hover{ color: #ff004f; transform: translateY(-5px); } .btn.btn2{ display: inline-block; background: #ff004f; } .contact-right form{ width: 100%; } form input, form textarea{ width: 100%; border: 0; outline: none; background: #262626; padding: 15px; margin: 15px 0; color: #fff; font-size: 18px; border-radius: 6px; } form btn2{ padding: 14px 60px; font-size: 18px; margin-top: 20px; cursor: pointer; } .copyright{ width: 100%; text-align: center; padding: 25px 0; background: #262626; font-weight: 300; margin-top: 20px; } .copyright i{ color: #ff004f; } /--------------css for small screens-----------/ nav .fa-solid{ display: none; }

@media only screen and (max-width: 600px){ #header{ background-image: url(https://scontent.fmnl25-5.fna.fbcdn.net/v/t1.15752-9/438203898_1127994608247808_7482794543686424435_n.png?_nc_cat=104&ccb=1-7&_nc_sid=5f2048&_nc_eui2=AeFStWEKKb1SBYQQkAfo61A4NsuSdru64fA2y5J2u7rh8KhQWJWOLo7vkbNpaU9PwsDBrwHYJSmnmb7sHkrr72Je&_nc_ohc=8XxxstgzsncQ7kNvgE_aNPy&_nc_ht=scontent.fmnl25-5.fna&oh=03_Q7cD1QGpWJGHQ2o56biSc54DL4rZt-Kq_-8ore9G7dI2cUsq3Q&oe=66772A2B); background-size: cover; background-position: right; } .header-text{ margin-top: 100%; font-size: 16px; } .header-text h1{ font-size: 30px; } nav .fa-solid{ display: block; font-size: 25px; } nav ul{ background: #ff004f; position: fixed; top: 0; right: -200px; width: 200px; height: 100vh; padding-top: 50px; z-index: 2; transition: right 0.5s; } nav ul li{ display: block; margin: 25px; } nav ul .fa-solid{ position: absolute; top: 25px; left: 25px; cursor: pointer; } .sub-title{ font-size: 40px; } .about-col-1, .about-col-2{ flex-basis: 100%; } .about-col-1{ margin-bottom: 30px; } .about-col-2{ font-size: 14px; } .tab-links{ font-size: 16px; margin-right: 20px; } .contact-left, .contact-right{ flex-basis: 100%; } .copyright{ font-size: 14px; } } </style>

Student

Hi, I'm Elezar
Jay From Cavite

About Me

Hi, I'm Elezar Jay, a diligent Computer Science student who is crafting my own path towards a bright future. With a passion for technology and a determination to succeed, i'm not just studying for degree, but actively shaping my own destiny in the world of computer science. Through hard work, dedication, and a hunger for knowledge, i'm paving the way for my own success in the exciting realms of technology and innovation.

      <div class="tab-titles">
        <p class="tab-links active-link" onclick="opentab('skills')">Skills</p>
        <p class="tab-links" onclick="opentab('experience')">Experience</p>
        <p class="tab-links" onclick="opentab('education')">Education</p>
      </div>
      <div class="tab-contents active-tab" id="skills">
        <ul>
          <li><span>JavaScript</span><br>Asynchronous Programming<br>Fundamentals</li>
          <li><span>Html</span><br>Accessibility<br>Semantics<br>Forms<br>Multimedia<br>Semantic Markup</li>
          <li><span>Bootstrap</span><br>Responsive Design<br>Component Usage<br>Customization<br>Layouts</li>
        </ul>
      </div>
      <div class="tab-contents" id="experience">
        <ul>
          <li><span>2024 - Current</span><br> I'm currently in the midst of shaping my expertise through practical experience. With a thirst for knowledge and a drive to excel, I'm actively immersing myself in real-world challenges, eagerly seizing every opportunity to grow. As I navigate this journey, I'm not just accumulating experience; I'm refining my skills, broadening my understanding, and crafting a narrative of resilience and proficiency in my chosen field. Join me as I turn aspirations into achievements, one step at a time.</li>
        </ul>
      </div>
      <div class="tab-contents" id="education">
        <ul>
          <li><span>2024 - Current</span><br>Cavite State University - Bacoor Campus</li>
          <li><span>2021-2022</span><br>ABE Intenational Business College</li>
          <li><span>2018-2019</span><br>Bacoor National Highschool - Main</li>
        </ul>
    </div>
  </div>
</div>

My Services

JavaScript

"Hey there! Need help with JavaScript? I'm here for you. Whether you're stuck on assignments or aiming to level up your coding skills, let's work together. We can schedule virtual sessions where I'll guide you through concepts, assist with projects, and answer any questions you have. Let's tackle JavaScript together!"

Learn more

Html

"Hey there! Need a hand with HTML? Look no further! Whether you're grappling with web page structure or aiming to refine your HTML skills, I'm here to support you. Let's arrange virtual sessions where we can delve into HTML fundamentals, collaborate on projects, and address any questions you have. Together, we'll conquer HTML and build awesome web experiences!"

Learn more

Bootstrap

"Hey! Need help with Bootstrap? You're in luck! Whether you're grappling with responsive design or seeking to polish your web development skills, I'm here to assist you. Let's schedule virtual sessions where we can delve into Bootstrap's intricacies, collaborate on projects, and address any questions you have. Together, we'll harness the power of Bootstrap to create visually stunning and user-friendly websites!"

Learn more

My Work

Bootsrap Introduction

Responsive columns adjust their layout or behavior based on the screen size or device type to ensure optimal viewing and usability across different devices and screen resolutions.

Responsive Column

Responsive columns adjust their layout or behavior based on the screen size or device type to ensure optimal viewing and usability across different devices and screen resolutions.

Responsive column with image

Responsive columns adjust their layout or behavior based on the screen size or device type to ensure optimal viewing and usability across different devices and screen resolutions.

See More

Contact Me

zarjay29@gmail.com

09773411219

      <form action="https://api.web3forms.com/submit" method="POST">
      <input type="hidden" name="apikey" value="af1350e7-1124-4f2e-8668-245d949c44aa">
      <input type="text" name="Name" placeholder="Your Name" required>
      <input type="email" name="Email" placeholder="Your Email" required>
      <textarea name="Message" rows="6" placeholder="Your Message"></textarea>
      <button type="submit" class="btn btn2">Submit</button>
    </form>
  </div>
</div>

Copyright © Elezar. Made with by Myself.

<script> var tablinks = document.getElementsByClassName("tab-links"); var tabcontents = document.getElementsByClassName("tab-contents"); function opentab(tabname){ for(tablink of tablinks){ tablink.classList.remove("active-link"); } for(tabcontent of tabcontents){ tabcontent.classList.remove("active-tab"); } event.currentTarget.classList.add("active-link"); document.getElementById(tabname).classList.add("active-tab"); } </script> <script> var sidemenu = document.getElementById("sidemenu"); function openmenu(){ sidemenu.style.right = "0" } function closemenu(){ sidemenu.style.right = "-200px" } </script>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published