Skip to content
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
Binary file added 2021/BEGINNERS/WEEK1/Enjeghe Onukak/doll.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 74 additions & 0 deletions 2021/BEGINNERS/WEEK1/Enjeghe Onukak/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Myself</title>
<style>
body{
background-color: black;
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;
color: white;
width: 100%;
height: 100%;
}
img{
width: 200px;
height: 200px;
}
h1{
text-align: center;
color: aquamarine;
}
h2{
color: aquamarine;
}
a{
color: white;
}
</style>
</head>

<body>
<div>
<h1>Enjeghe Onukak</h1>
<img src="doll.jpg" alt="Doll">
<nav>
<a href="https://google.com">Ask Google</a>
<a href="https://wikipedia.com">Wikipedia</a>
</nav>
<main>
<section>
<h2>Personal Info</h2>
<p>My name is Enjeghe Onukak.<br/> I'm a 300 level Chemical Engineering student of the University of Lagos. </p>
</section>
<section>
<h2>Likes</h2>
<p>
<ul>
<li>Novels</li>
<li>Music</li>
<li>Movies</li>
</ul>
</p>
</section>
<section>
<h2>Dislikes</h2>
<p>
<ol>
<li>Noodles</li>
<li>Pretence</li>
<li>Arrogance</li>
</ol>
</p>
</section>
</main>
<hr/>
<footer>&copy 2021</footer>
</div>

</body>

</html>
3 changes: 2 additions & 1 deletion 2021/BEGINNERS/WEEK1/submission.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
## fullname - Assignment Folder Name - Whatsapp phone number
## fullname - Assignment Folder Name - Whatsapp phone number
Enjeghe Onukak - Enjeghe Onukak - 09057485825
53 changes: 53 additions & 0 deletions 2021/BEGINNERS/WEEK2/Enjeghe Onukak/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dynasty Associates|Applications </title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<header id="header">
<h1>Dynasty Associates Application</h1>
</header>
<main id="main">
<p class="important">All fields must be filled. Failure to do so will result in termination of application
</p>
<form action="" method="get" autocomplete="on">
<label for="fname">First name: </label>
<input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name: </label>
<input type="text" id="lname" name="lname"><br><br>
<label for="phone">Phone number: </label>
<input type="number" name="phone" id="phone"><br><br>
<label for="email">Email: </label>
<input type="email" name="email" id="email"><br><br>
<label for="gender">Gender: </label>
<select>
<option value="Male">Male</option>
<option value="Female">Female </option>
<option value="Others">Others </option>
<option value="Prefer not to say">Prefer not to say</option>
</select>
<p>Are you married?
<label for="yes">Yes</label>
<input type="radio" name="ownaccount" id="yes">
<label for="no">No</label>
<input type="radio" name="ownaccount" id="no">
</p>
<hr>
<p>In not more than 150 words, tell us why you want to join Dynasty Associates. </p>
<textarea name="message" id="message" rows="8" cols="40"></textarea>
<input type="submit" value="Submit" >

</form>
</main>
<hr>
<footer id="footer"><span class="blue">&copy;2021</span> Created by Enjeghe Onukak.<br> Send us a mail. <a href="mailto:enjeghe2@gmail.com" >enjeghe2@gmail.com</a>
</footer>

</body>

</html>
12 changes: 12 additions & 0 deletions 2021/BEGINNERS/WEEK2/Enjeghe Onukak/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
body {
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;
background-color: #f4f4f4;
color: #000;
}
.important{
color: #ff0000;
}
.blue{
color: #0000ff;
}
1 change: 1 addition & 0 deletions 2021/BEGINNERS/WEEK2/submission.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#fullname - assignment folder name - whatsapp number
Enjeghe Onukak - Enjeghe Onukak - 09057485825