-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit aad87f6
Showing
2 changed files
with
489 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
<!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"> | ||
<title>Meet Me</title> | ||
<link rel="stylesheet" href="main.css"> | ||
<link rel="icon" type="image/x-icon" href="img/favicon.ico"> | ||
<script src="https://kit.fontawesome.com/ac6d0c0a18.js" crossorigin="anonymous"></script> | ||
</head> | ||
<body id="body"> | ||
<div id="bg-img"></div> | ||
<header> | ||
<div id="header"> | ||
<h1>About Me</h1> | ||
</div> | ||
</header> | ||
<main> | ||
<section id="card-section"> | ||
<div id="card"> | ||
<div> | ||
<img src="images/profile.jpg" alt="An image of a character with two thumbs up"> | ||
</div> | ||
<div id="card-info"> | ||
<div id="info-text"> | ||
<h3>Hey There!</h3> | ||
<p> | ||
I've been learning Web Developement for about 2 months now. | ||
This is my second site that I've made from scratch! | ||
You can check out my other <a href="#projects">Projects</a> down below in this page. | ||
</p> | ||
</div> | ||
<table> | ||
<tr> | ||
<td class="row-cat">Name</td> | ||
<td class="row-data">Joseph</td> | ||
</tr> | ||
<tr> | ||
<td class="row-cat">Experience</td> | ||
<td class="row-data">2 Months</td> | ||
</tr> | ||
<tr> | ||
<td class="row-cat">Location</td> | ||
<td class="row-data">Malaysia, Cheras</td> | ||
</tr> | ||
<tr> | ||
<td class="row-cat">Email</td> | ||
<td class="row-data">johndoe@gmail.com</td> | ||
</tr> | ||
</table> | ||
</div> | ||
<div class="card-btns"> | ||
<a href="https://github.io/"><i class="fa-solid fa-paperclip"></i> Github</a> | ||
<a href="" | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="skill-section"> | ||
<div id="skill-container"> | ||
<h2>SKILLS</h2> | ||
<div id="skill-card-container"> | ||
<div class="skill-card"> | ||
<h3>HTML & CSS</h3> | ||
<p>Basic Html & Css skills & fundamentals</p> | ||
</div> | ||
<div class="skill-card"> | ||
<h3>Javascript</h3> | ||
<p>Basic javascript</p> | ||
</div> | ||
<div class="skill-card"> | ||
<h3>3D</h3> | ||
<p>3D Modelling & Animation</p> | ||
</div> | ||
<div class="skill-card"> | ||
<h3>2D</h3> | ||
<p>2D Animation</p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="edu-prj-section"> | ||
<div id="edu-prj-container"> | ||
<div class="edu-prj-cards-cont"> | ||
<h2>Education</h2> | ||
<div class="edu-card edu-prj-card"> | ||
<h3>Mimo</h3> | ||
<p>Oct, 2023 - Now</p> | ||
<p>Course lessons at <a href="https://mimo.org/">Mimo.org</a></p> | ||
</div> | ||
<div class="edu-card edu-prj-card"> | ||
<h3>FreeCodeCamp</h3> | ||
<p>Oct, 2023 - Now</p> | ||
<p>Course lessons at <a href="https://www.freecodecamp.org/">FreeCodeCamp.org</a></p> | ||
</div> | ||
</div> | ||
<div id="projects" class="edu-prj-cards-cont"> | ||
<h2>Projects</h2> | ||
<a class="prj-card edu-prj-card" href="https://jos3ph1205.github.io/unit-calculator/" target="_blank"><div> | ||
<h3>Unit Calculator <i class="fa-solid fa-calculator"></i></h3> | ||
<p>20/12/23</p> | ||
<p>A site for calculating unit conversions</p> | ||
</div></a> | ||
<div class="prj-card edu-prj-card"> | ||
<h3>Pending</h3> | ||
<p>...</p> | ||
<p>...</p> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
<section id="work-section"> | ||
<div id="work-container"> | ||
<h2>Works</h2> | ||
<div id="work-imgs-cont"> | ||
<img src="images/work-img-1.jpg" class="work-img"> | ||
<img src="images/work-img-2.jpg" class="work-img"> | ||
<img src="images/work-img-3.jpg" class="work-img"> | ||
<img src="images/work-img-4.jpg" class="work-img"> | ||
<img src="images/work-img-5.jpg" class="work-img"> | ||
<img src="images/work-img-6.jpg" class="work-img"> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
<footer> | ||
<a href="#body">Go Back Up <i class="fa-solid fa-arrow-up"></i></a> | ||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.