Skip to content

Commit

Permalink
Fix some semantics and update README.md 😘
Browse files Browse the repository at this point in the history
  • Loading branch information
mpotane committed Oct 5, 2022
1 parent c471ca8 commit 2f9f44e
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
10 changes: 7 additions & 3 deletions beginner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<img src="./assets/dark.png">
</details>

## Features
## Features

✅ Fast

Expand All @@ -32,8 +32,12 @@

✅ 0 Dependencies

## I am not a web developer, how do I setup my portfolio website?
## 📃 License

[![](https://img.shields.io/static/v1?label=LICENSE&message=MIT&style=for-the-badge&color=blueviolet)](https://opensource.org/licenses/MIT)

## 🤔 I am not a web developer, how do I setup my portfolio website?

> Need help with setting up your portfolio website?
Contact us at https://ossph.org
> Contact us at https://ossph.org
21 changes: 12 additions & 9 deletions beginner/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<nav class="navbar">
<a href="#" class="navbar-branding">Lo<span class="brandstyle">go</span></a>
<ul class="nav-menu">
<li class="nav-item"><a href="#1" class="nav-link">Home</a></li>
<li class="nav-item"><a href="#2" class="nav-link">Projects</a></li>
<li class="nav-item"><a href="#3" class="nav-link">Testimony</a></li>
<li class="nav-item"><a href="#hero__section" class="nav-link">Home</a></li>
<li class="nav-item"><a href="#project__section" class="nav-link">Projects</a></li>
<li class="nav-item"><a href="#testimonial__section" class="nav-link">Testimony</a></li>
<li class="nav-item">
<div class="mode__con">
<img class="lightswitch" src="assets/moon.svg" alt="moon icon">
Expand All @@ -27,6 +27,7 @@
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
<!-- The hamburger menu icon. -->
<div class="icon nav-icon-6">
<span></span>
<span></span>
Expand All @@ -38,8 +39,8 @@

<!-- This is the main content of the page. -->
<main>
<section class="hero" id="1">
<div class="left-hero">
<section class="hero" id="hero__section">
<article class="left-hero">
<h1 class="txt">Hello world<span class="exclamation">&#33;</span></h1>
<p class="para">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Itaque deleniti aliquam similique?</p>
<div class="soclinks">
Expand All @@ -51,12 +52,12 @@ <h1 class="txt">Hello world<span class="exclamation">&#33;</span></h1>
<img src="assets/in.svg" alt="Twitter icon">
</a>
</div>
</div>
</article>
<div class="right-hero">
<img id="hero__img" src="assets/undraw_developer_activity_re_39tg.svg" alt="right-hero">
</div>
</section>
<section class="projects" id="2">
<section class="projects" id="project__section">
<h2 class="project-heading">Projects</h2>
<div class="cards">
<div class="card">
Expand Down Expand Up @@ -91,8 +92,9 @@ <h4><b>Jane Doe</b></h4>
</div>
</div>
</section>
<section class="testimony" id="3">
<section class="testimony" id="testimonial__section">
<div class="fig__container">
<!-- This is the testimonial section of the page. It contains the testimonials of the users. -->
<div class="testimonial">
<div class="slide">
<figure class="fig fade">
Expand All @@ -109,6 +111,7 @@ <h4><b>Jane Doe</b></h4>
</figure>
</div>
</div>
<!-- The indicator for the testimonial section. -->
<div class="indicator">
<span class="figBtn active__indicator"></span>
<span class="figBtn"></span>
Expand All @@ -119,7 +122,7 @@ <h4><b>Jane Doe</b></h4>
</section>
</main>

<!-- This is the footer section of the page. It contains the copyright information. -->
<!-- This is the footer section of the page. It contains the copyright information. -->
<footer class="ftr">
<div>Made with ❤️ by @mpotane</div>
</footer>
Expand Down

0 comments on commit 2f9f44e

Please sign in to comment.