forked from Iamnk-ith/Test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
212 lines (187 loc) · 5.75 KB
/
index.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio Website</title>
<style>
/* Style for the header */
header {
background-color: #333;
color: #fff;
padding: 10px 0;
}
/* Style for the h1 element inside the header */
header h1 {
font-size: 28px;
}
/* Style for developer sections */
.developer {
margin: 20px;
padding: 20px;
border: 1px solid #ddd;
background-color: #f9f9f9;
text-align: center;
}
#first{
background-color: #ECEFF1; /* Light Blue Grey */
color: #333; /* Dark Grey */
}
#second{
background-color: #FFF3E1; /* Beige */
color: #333; /* Dark Grey */
}
/* Style for developer images */
/* .developer img {
max-width: 100%;
border-radius: 50%;
} */
/* Style for developer image containers */
.image-container {
width: 200px; /* Set the desired width */
height: 200px; /* Set the desired height */
overflow: hidden; /* Crop the image if it overflows */
margin: 0 auto; /* Center the image container horizontally */
border-radius: 50%;
}
/* Style for developer images */
.image-container img {
max-width: 100%;
/* border-radius: 50%; */
height: auto;
display: block;
}
/* Style for developer names */
.developer h1 {
font-size: 24px;
color: #333;
}
/* Style for skills section */
.skills {
margin-top: 10px;
}
/* Style for skills list */
.skills ul {
list-style-type: none;
padding: 0;
}
.skills li {
margin: 5px 0;
}
/* Style for the footer */
footer {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
/* Style for the contact information */
.contact-info {
display: flex;
justify-content: space-around;
}
/* Style for developer contact details */
.developer-contact {
flex: 1;
margin: 0 10px;
}
.developer-contact h3 {
font-size: 18px;
font-weight: bold;
color: #fff;
}
.developer-contact p {
color: #ccc;
}
/* Style for the navigation menu */
nav {
text-align: center;
}
.menu {
list-style-type: none;
padding: 0;
}
.menu li {
display: inline;
margin-right: 20px; /* Adjust the spacing between menu items */
}
.menu a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
.menu a:hover {
text-decoration: underline; /* Add an underline effect on hover */
}
.github_link{
color:yellow;
}
</style>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<header>
<h1 align="center"><b>About Ourselves</b></h1>
<nav>
<ul class="menu">
<li><a href="#developer1">Bibash Acharya</a></li>
<li><a href="#developer2">Nitesh Kafle</a></li>
<!-- Add more menu options as needed -->
</ul>
</nav>
</header>
<div class="container">
<div class="developer" id="first">
<div class="image-container">
<img src="developer1.jpg" alt="Developer 1">
</div>
<h1>Developer 1</h1>
<p>Bibash Acharya</p>
<p>Itahari, Nepal</p>
<!-- Skills section for Developer 1 -->
<div class="skills">
<h2>Skills:</h2>
<ul>
<li>Python</li>
<li>Django</li>
</ul>
</div>
</div>
<div class="developer" id="second">
<div class="image-container">
<img src="developer2.jpg" alt="Developer 2">
</div>
<h1>Developer 2</h1>
<p>Nitesh Kafle</p>
<p>Itahari, Nepal</p>
<!-- Skills section for Developer 1 -->
<div class="skills">
<h2>Skills:</h2>
<ul>
<li>PHP</li>
<li>MySQL</li>
</ul>
</div>
</div>
</div>
<!-- Footer section -->
<footer>
<h2>Contact Information</h2>
<div class="contact-info">
<div class="developer-contact">
<h3>Bibash Acharya</h3>
<p>Email: acharyabibash1@gmail.com</p>
<p>Phone: +1 (123) 456-7890</p>
<p><i class="fab fa-github"></i> <a href="https://github.com/acharyabibash" target="_blank" class="github_link">acharyabibash</a></p>
</div>
<div class="developer-contact">
<h3>Nitesh Kafle</h3>
<p>Email: niteshkafle@gmail.com</p>
<p>Phone: +1 (987) 654-3210</p>
<p><i class="fab fa-github"></i> <a href="https://github.com/Iamnk-ith" target="_blank" class="github_link">Nitesh Kafle</a></p>
</div>
</div>
</footer>
</body>
</html>