-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
101 lines (91 loc) · 3.86 KB
/
index2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Page</title>
<link rel="stylesheet" href="index2.css">
</head>
<body>
<!-- Header with Profile Picture and Name -->
<header id="header">
<div id="profile">
<img id="profile-pic" src="dp.jpg" alt="Profile Picture">
<h1 id="profile-name">Abdul-Rehman Khan Niazi</h1>
</div>
</header>
<!-- Navigation Bar -->
<nav id="navbar">
<ul>
<li class="dropdown">About
<ul class="dropdown-content">
<li><a href="#">Biography</a></li>
<li><a href="#">Career</a></li>
<li><a href="#">Education</a></li>
</ul>
</li>
<li class="dropdown">Projects
<ul class="dropdown-content">
<li><a href="#">Project 1</a></li>
<li><a href="#">Project 2</a></li>
<li><a href="#">Project 3</a></li>
</ul>
</li>
<li class="dropdown">Awards
<ul class="dropdown-content">
<li><a href="#">Award 1</a></li>
<li><a href="#">Award 2</a></li>
<li><a href="#">Award 3</a></li>
</ul>
</li>
<li><a href="#">Linktree</a></li>
</ul>
</nav>
<!-- Main Body Content -->
<main id="main-content">
<div class="column" id="column-left">
<p>
Out of the night that covers me
<br>Black as the pit from pole to pole
<br>I thank whatever gods may be
<br>For my unconquerable soul.
<br>In the fell clutch of circumstance,
<br>I have not winced nor cried aloud.
<br>Under the bludgeonings of chance,
<br>My head is bloody, but unbowed.
</p>
<p>
Beyond this place of wrath and tears,
<br>Looms but the Horror of the shade.
<br>And yet the menace of the years
<br>Finds, and shall find, me unafraid.
<br>It matters not how strait the gate
<br>How charged with punishments the scroll
<br>I am the master of my fate:
<br>I am the captain of my soul.
</p>
</div>
<div class="column" id="column-right">
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur consectetur justo sit amet turpis consequat, a laoreet erat feugiat.</p> -->
<p>“Darkness cannot drive out darkness; only light can do that. Hate cannot drive out hate: only love can do that.” -Martin Luther King Jr.</p>
</div>
</main>
<!-- Button for Changing Color -->
<div id="color-change-section">
<button id="color-button" onclick="changeColor()">Change Color</button>
<p id="color-info">Color: None</p>
</div>
<!-- Embedded Video -->
<!-- <div id="video-section">
<iframe width="560" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div> -->
<div id="video-section">
<iframe width="560" height="315" src="https://www.youtube.com/embed/Iap1E0Jar-Y" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
<!-- Footer -->
<footer id="footer">
<p>© 2024 John Doe. All rights reserved.</p>
</footer>
<script src="index2.js"></script>
</body>
</html>