Skip to content

Commit

Permalink
Merge pull request #514 from bunnyBites/main
Browse files Browse the repository at this point in the history
added simple portfolio with html
  • Loading branch information
l-white committed Jul 21, 2023
2 parents 787270f + 2c87bf0 commit 83d651a
Show file tree
Hide file tree
Showing 5 changed files with 130 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,5 @@
[@damaluku](https://github.com/damaluku)

[@Saga-sanga](https://github.com/Saga-sanga)

[@bunnyBites](https://github.com/bunnyBites)
13 changes: 13 additions & 0 deletions simple-folio/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
body { background-color: #DEFCF9; }

h1, h2, h4 { color: #3C84AB; }

img { height: 12rem; }

hr {
width: 10%;
border-style: none;
border-top-style: dotted;
color: grey;
border-width: 7px;
}
25 changes: 25 additions & 0 deletions simple-folio/hobbies/hobbies.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Hobbies</title>
<link rel="stylesheet" href="../css/styles.css">
</head>

<body>
<h3>Hobbies:</h3>
<ol>
<li>
<strong>Playing Video games</strong>
</li>
<li>
<strong>Learning new tech</strong>
</li>
<li>
<strong>Reading books</strong>
</li>
</ol>
</body>

</html>
Binary file added simple-folio/img/bunny-cropped-img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
90 changes: 90 additions & 0 deletions simple-folio/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>PureHtml</title>
<link rel="stylesheet" href="css/styles.css">
</head>

<body>
<table cellSpacing="10">
<tr>
<td><img src="img/bunny-cropped-img.png" height="300" alt="bunny-image"></td>
<td>
<h1>Bunny Bites</h1>
<h3><em>Future entrepreneur</em></h3>
<h4>I am a web developer and I ❤ UI</h4>
<hr>
</td>
</tr>
</table>


<h2>Books I read</h2>
<ul>
<li><strong>Dark Matter</strong></li>
<li><strong>The chalkman</strong></li>
<li><strong>Da Vinci Code</strong></li>
</ul>

<h2>Work Experience</h2>
<table cellSpacing="10">
<thead>
<tr>
<th>Date</th>
<th>Name of organization</th>
</tr>
</thead>
<tbody>
<tr>
<td>2015 - 2019</td>
<td>Sara</td>
</tr>
<tr>
<td>2019 - 2022</td>
<td>Relevantz</td>
</tr>
</tbody>
</table>

<!-- Skill Section -->
<h2>Skill Section</h2>
<table cellSpacing="10">
<tr>
<td>
<table>
<tr>
<td>HTML</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>React</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Bootstrap</td>
<td>⭐⭐⭐⭐</td>
</tr>
</table>
</td>
<td>
<table>
<tr>
<td>CSS</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Javascript</td>
<td>⭐⭐⭐</td>
</tr>
</table>
</td>
</tr>
</table>
<hr>
<!-- Footer section -->
<a href="hobbies/hobbies.html">Hobbies</a>
</body>

</html>

0 comments on commit 83d651a

Please sign in to comment.