Skip to content

Commit

Permalink
Add initial CV website files
Browse files Browse the repository at this point in the history
  • Loading branch information
JomarBanting authored Dec 4, 2021
1 parent 1f8be1d commit bf5b1c4
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 0 deletions.
27 changes: 27 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Contact Info</title>
</head>
<body>
<h2>My contact Info</h2>
<ul>
<li>Address: Area 51 Nevada</li>
<li>Email: [email protected]</li>
<li>Number: +1234-567-8912</li>
</ul>
<a href="index.html">Go back</a>
<hr>
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="">Send me a message!</label><br>
<label for="">Your Name:</label>
<input type="text" name="yourName" value=""><br>
<label for="">Your Email:</label>
<input type="email" name="yourEmail"><br>
<label for="">Your Message:</label><br>
<textarea name="yourMessage" rows="10" cols="30"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>
17 changes: 17 additions & 0 deletions hobbies.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Hobbies</title>
</head>
<body>
<h3>My Hobbies</h3>
<ol>
<li>Playing Video Game</li>
<li>Studying Coding</li>
<li><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ&ab_channel=RickAstley">Watching Porn</a></li>
<li><a href="https://www.youtube.com/watch?v=oI3CCvZVxR8&ab_channel=mags">Binge Watching Youtube</a></li>
</ol>
<a href="index.html">Go back</a>
</body>
</html>
Binary file added images/chika_circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
113 changes: 113 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">

<head>
<meta charset="utf-8">
<title>Test Personal Site</title>
</head>

<body>

<table cellspacing="20">
<tr>
<td><img src="images/chika_circle.png" alt="Chika IMG"></td>
<td> <h1>Jomar Banting</h1>
<p><em><strong>GAMER and <a href="https://www.youtube.com/watch?v=08BgTHgXGU0&ab_channel=Beastlyprogamer">STUDENT</a></strong></em></p>
<p>Currently studying coding on <a href="https://www.udemy.com/">Udemy</a>.</p>
</td>
</tr>
</table>




<hr>

<h3>Education</h3>
<ul>
<li>New Town Highschool</li>
<li>Laguardia Community College</li>
<li>Udemy Coding Classes</li>
</ul>

<hr>

<h3>Work Experience</h3>
<table>
<th>
<tr>
<th>Dates</th>
<th>Work</th>
</tr>
</th>
<tbody>
<tr>
<td>2010-2013</td>
<td>Lead Developer at BitConnect</td>
</tr>
<tr>
<td>2010</td>
<td>Wendys best Man</td>
</tr>
<tr>
<td>2021</td>
<td>Squid Game Survivor</td>
</tr>
</tbody>
</table>

<hr>


<h3>Skills</h3>

<table>
<tr>
<td>
<table cellspacing="10">
<tr>
<td>Python</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>C++</td>
<td></td>
</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=nPaPZFLIwpE&ab_channel=JuscianWilson">GAMING</a></td>
<td>⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table cellspacing="10">
<tr>
<td>HTML</td>
<td>⭐⭐</td>
</tr>
<tr>
<td>C#</td>
<td></td>
</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=qRofinpW8kU&ab_channel=RicardoCesar">Anime Expert</a></td>
<td>⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐</td>
</tr>
</table>
</td>
</tr>
</table>





<hr>

<a href="hobbies.html">My Hobbies</a>
<br>
<a href="contact.html">Contact Info</a>

</body>

</html>

0 comments on commit bf5b1c4

Please sign in to comment.