Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NW6 | Fikret Ellek | HTML-CSS Module | Multipage Clone | Week 4 #186

Open
wants to merge 18 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 117 additions & 0 deletions MultiPage-Clone/contacts.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Add a link to your custom CSS here -->
<title>FE - Contact</title>
<link rel="stylesheet" href="./css/main.css" />

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,600&display=swap"
rel="stylesheet"
/>

<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,600&family=Quicksand:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>

<body>
<!-- Add your markup here -->

<header>
<div class="cont-header">
<div class="outer-header">
<div class="inner-header">
<div class="logo"></div>
<a class="name-link" href="./index.html">Fikret Ellek</a>
</div>
<a class="title-link" href="./resume.html">Software Engineer</a>
</div>
<div class="hmb-cont">
<label class="hamburger-menu" for="hamburger-chk">
<input type="checkbox" id="hamburger-chk" />
</label>
<aside class="sidebar">
<nav class="menu-nav">
<a class="nav-links" href="./index.html">ABOUT ME</a>
<a class="nav-links" href="./resume.html">RESUME</a>
<a class="nav-links" href="./projects.html">PROJECTS</a>
<a class="nav-links" href="./contacts.html">CONTACT</a>
</nav>
</aside>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job on creating a sidebar navigation! To further enhance the structure and semantics of your code, you can consider using an unordered list ul with list items li instead of individual anchor (a) tags. This approach provides a more standardised and accessible way of representing a navigation menu. Like:

<aside class="sidebar">
  <nav class="menu-nav">
    <ul>
      <li><a class="nav-links" href="./index.html">ABOUT ME</a></li>
      //other links

</div>
</div>
</header>

<main class="background-dark">
<div class="resume-cont">
<div class="resume-hdr">
<div class="logo"></div>
<p class="resume-hdr-p">Let's Talk</p>
</div>

<div class="shadow form">
<div>
<div>
<label for="name">First Name <span class="blue-star">*</span></label>
<input type="text" id="name" />
</div>
<div>
<label for="surname">Last Name <span class="blue-star">*</span></label>
<input type="text" id="surname" />
</div>
</div>



<label for="mail">Email <span class="blue-star">*</span></label>
<input type="email" id="mail" />
<label for="subject">Subject</label>
<input type="text" id="subject" />
<label for="message">Message</label>
<input type="text" id="message" />
<button class="btn-card submit-btn align-self-center">Submit</button>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great use of labels for semantic HTML! It enhances accessibility and improves user experience @fikretellek Well done!

</div>
</div>
</main>
<footer>
<div class="ftr-cont">
<div class="info-ftr">
<div class="info-cont">
<p class="ftr-hdr">Call</p>
<p class="ftr-p">123-456-7890</p>
</div>
<div class="info-cont">
<p class="ftr-hdr">Write</p>
<p class="ftr-p">[email protected]</p>
</div>
<div class="info-cont">
<p class="ftr-hdr">Follow</p>
<div class="media-info ftr-icons">
<a href=""><img class="media-icon" src="./img/f.png" alt="" /></a>
<a href=""><img class="media-icon" src="./img/x.png" alt="" /></a>
<a href=""
><img class="media-icon" src="./img/in.png" alt=""
/></a>
<a href=""
><img class="media-icon" src="./img/ins.png" alt=""
/></a>
</div>
</div>
</div>
<p>
This website design was created by Wix.com, <br />and is used here for
strictly educational purposes.
</p>
</div>
</footer>
</body>
</html>
Loading