Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vickytommy #57

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
21 changes: 21 additions & 0 deletions submissions/vickytommy/Week_1/Fizzbuzz.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Enters a loop 100 times
# number denotes the loop count
# the loop starts at one and ends at 100
for number in range (1, 100+1):
# prints FizzBuzz and ends the loop if number is a multiple of 3 and 5
if (number % 3 == 0) and (number % 5 == 0):
print('FizzBuzz')
continue

# prints Fizz if number is a multiple of 3
elif number % 3 == 0:
print('Fizz')

# prints Buzz if number is a multiple of 5
elif number % 5 == 0:
print('Buzz')

# prints the number if above statements are not satisfied
# i.e if number is neither a multiple of 3 and 5 or both
else:
print(number)
2 changes: 2 additions & 0 deletions submissions/vickytommy/Week_1/about week.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
**This weeks submissions**
Solution to **Fizzbuzz**
36 changes: 36 additions & 0 deletions submissions/vickytommy/Week_29/HTML_QUIZ_1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>victor_week_27</title>
</head>
<body>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>

<header>
<h1>Quiz</h1>
<h4>A static web page with different HTML tags</h4>
</header>
<section>
<div>
<h2>Learning HTML Tags</h2>
<p><i>HTML </i>is a markup language for displaying content structure on the web</p>
<blockquote>&ldquo;A very significant language indeed&rdquo;</blockquote>
</div>

<article>
<h3>This is a very serious software development scholarship program</h3>
</article>
</section>
<hr />
<footer>
<h5>Our address</h5>
<address>27th week, Dufuna Street</address>
</footer>

</body>
</html>
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions submissions/vickytommy/Week_3/about week.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This folder contains the solution to week 3 assessment
1 change: 1 addition & 0 deletions submissions/vickytommy/Week_30/CSS_Quiz_1.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cssggff
1 change: 1 addition & 0 deletions submissions/vickytommy/Week_31/Quiz_1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ggug
24 changes: 24 additions & 0 deletions submissions/vickytommy/aboutme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Brief Introduction

My name is **Odesola Victor**, I am an electrical/electronics engineering student of the university of Ibadan, currently in my 3rd year,
I enjoy programming, designing and development. I am also **Artist**.

# Talk about Coding

I develop **Web Applications** and **Websites**, I code in **Python, C++** and **Javascript** and engage in **Android Development**.
I also explore by researching **AI** and **Deep and Machine Learning**.


# Favourite Emoji
Can't really say which at the moment, but as time goes, we'll see.

# Reach me




You can reach out to me on the following platforms:

- [GitHub](https://github.com/Vickytommy)