Skip to content

Commit

Permalink
444
Browse files Browse the repository at this point in the history
  • Loading branch information
MarlonPiusMulamba committed Nov 17, 2023
1 parent 1150f22 commit 4501f74
Show file tree
Hide file tree
Showing 5 changed files with 189 additions and 2 deletions.
39 changes: 37 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</style>
</head>
<body>
<div class="bg-dark h-100 text-light">
<div class="bg-dark h-100 text-light container-fluid">
<h1 class="mx-5">Mulamba Marlon Pius.</h1>
<nav class="navbar navbar-expand-sm bg-dark mx-5">
<div class="container-fluid bg-warning" style="border-radius: 10px;">
Expand All @@ -25,7 +25,7 @@ <h1 class="mx-5">Mulamba Marlon Pius.</h1>
<a class="nav-link navbar-brand active" href="index.html" style="font-size: xx-large; color: aliceblue;">Home</a>
</li>
<li class="nav-item mx-5">
<a class="nav-link navbar-brand " href="about.html" style="font-size: xx-large; color: aliceblue;">About</a>
<a class="nav-link navbar-brand" href="about.html" style="font-size: xx-large; color: aliceblue;">About</a>
</li>
<li class="nav-item mx-5">
<a class="nav-link navbar-brand" href="skills.html" style="font-size: xx-large; color: aliceblue;">Skills</a>
Expand Down Expand Up @@ -134,6 +134,41 @@ <h6><strong>A simple story good to know.</strong></h6>
</div>
</div>

<div>
<p>Am Marlon Pius alias Pythonista, who, like a sleeping lion, is always humble and meek. as touching the most pressing part of their being.
My humble soul passes throughout the community as the "Quiet Dynamo." Very were social, interactive, and quite funny, like a seasoned storyteller who could make the entire room erupt with laughter. I like making my presence in any society to always be a source of joy, and a knack for turning even the most mundane conversations into memorable experiences.
But when duty calls, the Quiet Dynamo in me transforms into an unstoppable force, like a river rushing through the heart of the mountains. With a heart full of zeal and enthusiasm, I stand up for work, tirelessly and with an unwavering commitment, as if I have an inner fire burning, guiding my every move.
Minimum supervision is what I need, for my dedication and work ethic are like a compass, pointing me in the right direction. People marveled at how i could take charge and lead with the wisdom of an elder, even when am still considered young in years. In this, they embodied the proverb: "Still waters run deep."

In my village, there was a saying that went, "When you want a job done with precision and passion, look to the Quiet Dynamo." I was a living testament to the power of a humble heart, a quick wit, and a fierce dedication to my work.
</p>
</div>

<div id="counter" class="container text-primary my-3 h1"><B><h1>0</h1></B></div>

<script>
const targetNumber = 500;
const duration = 5 * 500;
const interval = 5;

const counterElement = document.getElementById("counter");
let currentNumber = 0;
const increment = Math.ceil(targetNumber / (duration / interval));

function updateCounter() {
if (currentNumber < targetNumber) {
currentNumber += increment;
if (currentNumber > targetNumber) {
currentNumber = targetNumber;
}
counterElement.textContent = currentNumber;
setTimeout(updateCounter, interval);
}
}

setTimeout(updateCounter, interval);
</script>



<div style="background-color: black; height: 50px;"></div>
Expand Down
34 changes: 34 additions & 0 deletions java.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript</title>
</head>
<body>
<h1>My First Web Page</h1>
<p>My First Paragraph</p>

<p id="demo"></p>
<button class="btn btn-primary" type="button" onclick="document.write(1000)">
Click here
</button>
<div id="animation">
<h2>helllo world</h2>
</div>


<script>
document.getElementById("demo").innerHTML = 5 + 6;
document.getElementById("demo").innerHTML = "Uganda the pearl of Africa"
document.write(10);
window.alert("If you trust this website, click Ok");
alert("Thanks")
console.log("Uganda")
const name = prompt("Type your name: ");
console.log('hello, ${name}!');


</script>
</body>
</html>
63 changes: 63 additions & 0 deletions php.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>

</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</nav>


<body>
<div id="counter" class="container text-primary my-3 h1"><B><h1>0</h1></B></div>

<script>
const targetNumber = 500;
const duration = 5 * 500;
const interval = 5;

const counterElement = document.getElementById("counter");
let currentNumber = 0;
const increment = Math.ceil(targetNumber / (duration / interval));

function updateCounter() {
if (currentNumber < targetNumber) {
currentNumber += increment;
if (currentNumber > targetNumber) {
currentNumber = targetNumber;
}
counterElement.textContent = currentNumber;
setTimeout(updateCounter, interval);
}
}

setTimeout(updateCounter, interval);
</script>
</body>
</html>


</body>
</html>
31 changes: 31 additions & 0 deletions php.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PHP</title>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
</ul>
</div>
</nav>
</body>
</html>
24 changes: 24 additions & 0 deletions trial.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home_boot</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<nav id="main-navbar" class="main-navbar">
<div class="wrapper">
<div id="navbar-header-main" class="menu-main-mega-menu-cotainer">
<ul id="menu-main-mega-menu" class="menu">
<li id="menu-item-7252" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-7252">
<a href="index.html">Home page</a>
</li>
</ul>
</div>

</div>

</nav>
</body>

0 comments on commit 4501f74

Please sign in to comment.