Skip to content

BenjZP/Survey-Form

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

FCC Survey-Form

This is my website portfolio made by following a tutorial from a YouTube called Build a Portfolio Website & Deploy by Traversy Media with Denis Ivy

Table of contents

Overview

The Objective

  • Build out the project to the designs provided

Screenshot

Links

My process

Built with

Code Snippets

Proud of this Semantic HTML:

  <main>
     <header>
       <picture>
         <img srcset="images/image-victor.jpg" alt="profile picture">
       </picture>
     </header>
     <figcaption>
       <strong>Victor Crest</strong> 26
       <br>
       London
     </figcaption>

      
      <section>
        <dl>
          <dt>80K</dt>
          <dd>Followers</dd>
        </dl>
        <dl>
          <dt>803K</dt>
         <dd>Likes<dd>
        </dl>
        <dl>
          <dt>1.4K</dt>
          <dd>Photos</dd>
        </dl>
      </section>
   </main>

Proud of this CSS Media Queries:

@media (min-width: 376px) and (max-width: 1439px) {
    body {
        background-position: top -700px left -300px, bottom -650px right -300px;
        background-size: 1050px;
    }
}

@media (min-width: 1440px) {

    body {
        background-position: top -700px left -400px, bottom -700px right -380px;
        background-size: 1200px;
    }

    main {
       max-width: 100%;
       height: fit-content;
       font-size: .95em;
    }


    section {
        font-size: 1em;
    }
}

@media (max-width: 320px) {
    
    body {
        background-position: top -260px left -360px, bottom -260px right -360px;
        background-size: 500px;

    }

    main {
       max-width: 100%;
       max-height: fit-content;
       font-size: .85em;
    }


    section {
        font-size: 1em;
    }

    footer {
        font-size: .85em;
    }
}

Continued development

Useful resources

Author

Acknowledgments

About

FreeCodeCamp requirement for the course

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published