Skip to content

MarcelSchm/MarcelSchm.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

52 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Portfolio Template

A beautiful minimal and accessible portfolio template for Developers โœจ.

To View the live site click here โ†’

Portfolio Gif

Features

  • Clean, Simple and Modern UI Design.
  • Uses No CSS or JavaScript Frameworks or libraries as dependencies.
  • Built with only HTML, CSS and a bit of JavaScript ๐Ÿ”จ.
  • Well Organized Documentation.
  • Keyboard support.
  • Fully Responsive.
  • Loads fast โšก.

Lighthouse Report

Lighthouse Report

Contributions are warmly welcomed โค๏ธ.

Getting Started ๐Ÿš€

You'll need Git to be installed on your computer.

# Clone this repository
$ git clone https://github.com/MarcelSchm/MarcelSchm.github.io

If you don't have Git installed or you don't like using the terminal then you can download the zip and extract that and open the extracted folder in the code editor of your your choice.

Editing the Template ๐Ÿ”จ

Go to index.html and fill your information.

Header

In all of the places where you're supposed to fill your information you'll find HTML comments. As shown below just replace what is already in the opening and closing tags below the comment with your information.

<div class="header__text-box row">
    <div class="header__text">
        <h1 class="heading-primary">
        <!-- Replace the following name with your name -->
          <span>Marcel Schmid</span>
        </h1>
        <!-- Put a small paragraph about yourself -->
        <p>A Software- & Systemtest Engineer based in Lรผbeck, Germany.</p>
        <a href="#contact" class="btn btn--pink">Get in touch</a>
    </div>
</div>

Work Section

Each div with class work__box represents a project, replace the contents of the all the tags with the information of your projects.

		  <div class="work__box">
            <div class="work__text">
              <h3>Certified Tester Advanced Level - Test Manager (CTAL-TM)</h3>
              <p>
                ISTQB Certificate for the Advanced Level - Test Manager
              </p>
              <ul class="work__list">
                <li>Testing process</li>
                <li>Test management</li>
                <li>Risk-based testing</li>
                <li>Test documentation</li>
                <li>Test estimation</li>
                <li>Standards and metrics</li>
                <li>Reviews for the Test Manager</li>
                <li>Defect management</li>
                <li>Improving the test process</li>
                <li>Test tools and automation for the Test Manager</li>
                <li>People Skills and team composition</li>
              </ul>
              <div class="work__links">
                <a href="https://app.skillsclub.com/credential/10344-c8310b3cb1c649a51098985881e4461b346e44015aec1f7cbacde82531e07c78?locale=de&badge=true" class="link__text">
                  Visit Digital Badge <span>&rarr;</span>
                </a>
              </div>
            </div>
            <div class="work__image-box">
              <img src="./images/21-CTAL-TM-Digital Badge.png" class="work__image" alt="CTAL-TM" />
            </div>
          </div>

For changing the screenshot:

  • first place the image in images/ folder and then in HTML replace the name in src with the name of your image.

  • Recommended size for project image (1366 x 767px) also make sure the size of all project images is the same.

<img
    src="./images/name-of-your-image.png"
    class="work__image"
    alt="Project 1"
/>

Clients Section

  • Place the logos of the clients and companies that you have worked with in images/ directory and then replace the name in src with the name of your logos accordingly.

  • Make sure that you don't have whitespace on either side of the logos.

<img
    src="./images/your-logo.png"
    class="client__logo"
    alt="Your Logo"
/>

About Section

  • Replace the contents in the below paragraph with information about yourself.
  • Place a nice photo of yourself in the images/ directory and then change the name in the src with your image name.
<section class="about" id="about">
    <div class="row">
        <h2>About Me</h2>
        <div class="about__content">
            <div class="about__text">
                <!-- Replace the below paragraph with info about yourself -->
                <p>
                Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eos id
                nostrum illo harum blanditiis, tenetur eum suscipit cupiditate
                in vel, ex quam quidem quos mollitia labore aut sunt eius
                ratione molestiae fuga veniam facere similique voluptate.
                </p>
                <!-- Provide a link to your resume -->
                <a href="#" class="btn">My Resume</a>
            </div>

            <div class="about__photo-container">
                <!-- Add a nice photo of yourself -->
                <img
                class="about__photo"
                src="./images/kuka.jpg"
                alt=""
                />
            </div>
        </div>
    </div>
</section>

Contact Section

  • Modify the paragraph to your likings.
  • Replace the email with yours in the href anchor property and the text also.
<section class="contact" id="contact">
      <div class="row">
        <h2>Get in Touch</h2>
        <div class="contact__info">
          <p>
            Are you looking for a skilled Test Engineer with ISTQB Certificates and a look for details?
			Or looking for any kind of
			consultation? or want to ask questions? or have some advice for me
			or just want to say "Hi ๐Ÿ‘‹" in any case feel free to let me know. I
			will do my best to respond back. ๐Ÿ˜Š The quickest way to reach out to
			me is via an email.
          </p>
          <!-- Replace the email with yours -->
          <a href="mailto:you@example.com" class="btn">you@example.com</a>
        </div>
      </div>
</section>

Footer

  • Replace the href attribute values to your profile URLs for all anchors.
  • Remove the div with class footer__github-buttons.
<footer role="contentinfo" class="footer">
    <div class="row">
        <!-- Update the links to point to your accounts -->
        <ul class="footer__social-links">
            <li class="footer__social-link-item">
          <a href="https://www.instagram.com/schmiddi_m/" title="Link to Instagram Profile">
            <img src="./images/Instagram_simple_icon.svg" class="footer__social-image" alt="Instagram">
          </a>
        </li>
        <li class="footer__social-link-item">
          <a href="https://github.com/MarcelSchm" title="Link to Github Profile">
            <img src="./images/github.svg" class="footer__social-image" alt="Github">
          </a>
        </li>
        <li class="footer__social-link-item">
          <a href="https://www.xing.com/profile/Marcel_Schmid37">
            <img src="./images/Xing_logo.svg" title="Link to Xing Profile" class="footer__social-image" alt="Xing">
          </a>
        </li>
        </ul>

        <!-- If you give me some credit by keeping the below paragraph, will be huge for me ๐Ÿ˜Š Thanks. -->
        <p>
          &copy; 2020 - Template designed & developed by <a href="https://nisar.dev">Nisar</a>.
        </p>
        <div class="footer__github-buttons">
          <iframe
            src="https://ghbtns.com/github-btn.html?user=nisarhassan12&repo=portfolio-template&type=watch&count=true" 
            frameborder="0" scrolling="0" width="170" height="20" title="Watch Portfolio Template on GitHub">
          </iframe>
        </div>
    </div>
</footer>

About

portfolio website for my work certificates, my interest and information on how to get in touch

Topics

Resources

License

Stars

Watchers

Forks