-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.html
357 lines (303 loc) · 18 KB
/
profile.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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Discuss - Profile Page</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/cd8e8264f0.js" crossorigin="anonymous"></script>
</head>
<body>
<nav>
<div class="nav-left">
<a href="index.html"><img src="images/logo.png" class="logo"></a>
<ul>
<li><img src="images/list.png"></li>
<li><img src="images/edit.png"></li>
<li><a href="https://outlook.office.com/mail/"><img src="images/inbox.png"></a></li>
<li><img onclick="videoOpen()" src="images/video.png"></a></li>
</ul>
</div>
<div class="nav-right">
<div class="search-box">
<img onclick = "searchBing()" src="images/search.png">
<input type="text" id="userSearch" placeholder="Search">
</div>
<div class="nav-user-icon online" onclick="settingsMenuToggle()">
<img src="images/profile-pic.png" >
</div>
</div>
<!--Settings Menu----------------------- -->
<div class="settings-menu">
<div id="dark-btn">
<span></span>
</div>
<div class="settings-menu-inner">
<div class="user-profile">
<img src="images/profile-pic.png">
<div>
<p>John Nicholson</p>
<a href="#">See your profile</a>
</div>
</div>
<hr>
<div class="user-profile">
<img src="images/feedback.png">
<div>
<p>Give Feedback</p>
<a href="#">Help us to improve the new design</a>
</div>
</div>
<hr>
<div class="settings-links">
<img src="images/setting.png" class="settings-icon">
<a href="#">Settings & Privacy<img src="images/arrow.png" width="10px"></a>
</div>
<div class="settings-links">
<img src="images/help.png" class="settings-icon">
<a href="#">Help & Support<img src="images/arrow.png" width="10px"></a>
</div>
<div class="settings-links">
<img src="images/display.png" class="settings-icon">
<a href="#">Display & Accessibility<img src="images/arrow.png" width="10px"></a>
</div>
<div class="settings-links">
<img src="images/logout.png" class="settings-icon">
<a href="#">Logout<img src="images/arrow.png" width="10px"></a>
</div>
</div>
</div>
<div class="videoholder" id="videoholder">
<div class="video1">
<iframe width="560" height="315" src="https://www.youtube.com/embed/3pZNzF6LBII" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<hr>
<div class="video2">
<iframe width="560" height="315" src="https://www.youtube.com/embed/N88g_IGGHRg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<hr>
<div class="video3">
<iframe width="560" height="315" src="https://www.youtube.com/embed/q34tLTpg3N4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<hr>
<div class="video4">
<iframe width="560" height="315" src="https://www.youtube.com/embed/QelK8rDrbpM" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<hr>
<div class="video5">
<iframe width="560" height="315" src="https://www.youtube.com/embed/TRL7o2kPqw0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<hr>
<div class="video6">
<iframe width="560" height="315" src="https://www.youtube.com/embed/BhtgINeaJWg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<hr>
<div class="video7">
<iframe width="560" height="315" src="https://www.youtube.com/embed/rltpH6ck2Kc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<hr>
<div class="video8">
<iframe width="560" height="315" src="https://www.youtube.com/embed/OPoMww9x378" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="video9">
<iframe width="560" height="315" src="https://www.youtube.com/embed/9If-K9R3Ka4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<div class="video10">
<iframe width="560" height="315" src="https://www.youtube.com/embed/-UrdExQW0cs" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="websiteView" id="websiteView">
<iframe class="web" id = "web" src="https://www.google.com/search?igu=1&q=" frameborder="0" width="100%" height="100%" ></iframe>
</div>
</nav>
<!-- profile page-->
<div class="profile-container">
<img src="images/cover.jpg" class="cover-img">
<div class="profile-details">
<div class="pd-left">
<div class="pd-row">
<img src="images/profile-pic.png" class="pd-image">
<div>
<h3>Jack Nicholson</h3>
<p>120 Followerrs - 2 Posts</p>
<img src="images/member-1.png">
<img src="images/member-2.png">
<img src="images/member-3.png">
<img src="images/member-4.png">
</div>
</div>
</div>
<div class="pd-right">
<button type="button"><img src="images/activity.png"> Analyze Activity</button>
<button type="button"><img src="images/message.png">Message</button>
<br>
<a href=""><img src="images/more.png"></a>
</div>
</div>
<div class="profile-info">
<div class="info-col">
<div class="profile-intro">
<h3>Intro</h3>
<p class="intro-text">Be Curious, Investigate anything and everything. <img src="images/feeling.png"></p>
<hr>
<ul>
<li><img src="images/profile-job.png"> Works as 3D Services Specialist</li>
<li><img src="images/profile-study.png" alt=""> Studies at University of Oklahoma</li>
<li><img src="images/profile-study.png" alt=""> Went to AME OU Norman</li>
<li><img src="images/profile-home.png" alt=""> Lives in Norman, US</li>
<li><img src="images/profile-location.png" alt=""> From the US</li>
</ul>
</div>
<div class="profile-intro">
<div class="title-box">
<h3>Your Ideas</h3>
<a href="">All Ideas</a>
</div>
<div class="photo-box">
<div><img src="images/feed11.png" alt=""></div>
<div><img src="images/idea1.jpg" alt=""></div>
<div><img src="images/ideas2.jpg" alt=""></div>
<div><img src="images/ideas3.jpg" alt=""></div>
<div><img src="images/ideas4.jpg" alt=""></div>
<div><img src="images/ideas5.png" alt=""></div>
</div>
</div>
<div class="profile-intro">
<div class="title-box">
<h3>Saved Ideas</h3>
<a href="">All Ideas</a>
</div>
<p>120 Ideas saved</p>
<div class="friends-box">
<div><img src="images/feed55.jpg" alt=""> <p>Aging</p></div>
<div><img src="images/depression.jpg" alt=""><p>Depression</p></div>
<div><img src="images/feed11.png" alt=""><p>Earth's Air</p></div>
<div><img src="images/economics.jpg" alt=""><p>Economy</p></div>
<div><img src="images/feed22.jpg" alt=""><p>Discoveries</p></div>
<div><img src="images/feed33.png" alt=""><p>Dinosaur</p></div>
<div><img src="images/physics.jpg" alt=""><p>Physics</p></div>
<div><img src="images/feed44.jpg" alt=""><p>Black Holes</p></div>
<div><img src="images/pyramids.jpg" alt=""><p>Pyramids</p></div>
</div>
</div>
</div>
<div class="post-col">
<div class="write-post-container">
<div class="user-profile">
<img src="images/profile-pic.png">
<div>
<p>John Nicholson</p>
<small>Public <i class="fas fa-caret-down"></i></small>
</div>
</div>
<div class="post-input-container">
<textarea rows="3" placeholder="What's on your mind, John?"></textarea>
<div class="add-post-links">
<a href="#"><img src="images/live-video.png"> Live Video</a>
<a href="#"><img src="images/photo.png"> Photo/Video</a>
<a href="#"><img src="images/feeling.png"> Feeling/Activity</a>
</div>
</div>
</div>
<div class="post-container">
<div class="post-row">
<div class="user-profile">
<img src="images/profile-pic.png">
<div>
<p>John Nicholson</p>
<span>Feb 24 2023, 13:40</span>
</div>
</div>
<a href="#"><i class="fas fa-ellipsis-v"></i></a>
</div>
<p class="post-text">
<span>
Why space doesn't suck all the air from earth even though its vacuum?
</span>
</p>
<img src="images/feed1.png" class="post-img">
<p class="post-text"> Air on Earth does not escape to the vacuum of space because
Earth has a <span>gravitational force</span> that keeps the air molecules bound to it.
Gravity is the force that attracts objects with mass to one another, and
it is what keeps the air molecules from escaping into space.
<br><br>
The Earth's gravitational force is strong enough to hold onto
its atmosphere, which is made up of gases such as <span>nitrogen,
oxygen, and carbon dioxide</span>. These gases have mass and are
attracted to the Earth's surface, which means they stay close
to the planet rather than drifting off into space.
<br><br>
Additionally, the Earth's atmosphere is constantly replenished
by various processes such as <span>volcanic activity, plant respiration,
and the evaporation of water from the oceans.</span> This ensures that
the atmosphere remains relatively stable and that the air doesn't
escape into the vacuum of space.
<br><br>
Finally, it is important to note that some molecules in the Earth's
atmosphere can, in fact, escape into space, but this is a slow and
continuous process. This loss of atmosphere is balanced by the
constant replenishment mentioned above, which keeps the overall
atmospheric pressure and composition relatively stable over time.
<br><br>
<a href="https://www.spacecentre.nz/resources/faq/solar-system/earth/atmosphere-escape.html">#Atmospheric pressure</a>
<a href="https://www.spacecentre.nz/resources/faq/solar-system/earth/atmosphere-escape.html"> #Vacuum</a> </p>
<hr>
<div class="post-row">
<div class="activity-icons">
<div><img id="like_unlike6" onclick="changeIcon('like_unlike6'); Incr('numlik6')" src="images/like.png"> <p id="numlik6"></p></div>
<div><img src="images/comments.png"> 45</div>
<div><img src="images/share.png"> 20</div>
</div>
<div class="post-profile-icon">
<img src="images/profile-pic.png"><i class="fas fa-caret-down"></i>
</div>
</div>
</div>
<div class="post-container">
<div class="post-row">
<div class="user-profile">
<img src="images/profile-pic.png">
<div>
<p>John Nicholson</p>
<span>June 06 2022, 22:56</span>
</div>
</div>
<a href="#"><i class="fas fa-ellipsis-v"></i></a>
</div>
<p class="post-text"><span>Moez Ullah Khan, a student at the University
of Oklahoma creates a website for students.
</span></p>
<img src="images/feed5.png" class="post-img">
<p class="post-text">
<span>Moez Ullah Khan</span> is a student at the University of Oklahoma. He is majoring
in Mechanical Engineering with a minor in Computer Science. He recently
created a website called "Discuss It" using HTML, CSS, and Java Script.
<br><br>
The purpose of this website is to provide a platform where people
can share their original ideas, theories about something. It could be
a description of an invention, new theory or theorem they came up with,
or an explanation of a mystery. The possibilities are infinite.
if you want to learn more about his work, then follow him on his <a href="https://www.linkedin.com/in/moezullahkhan/">Linkedln.</a>
</p>
<hr>
<div class="post-row">
<div class="activity-icons">
<div><img id="like_unlike7" onclick="changeIcon('like_unlike7'); Incr('numlik7')" src="images/like.png"> <p id="numlik7"></p></div>
<div><img src="images/comments.png"> 45</div>
<div><img src="images/share.png"> 20</div>
</div>
<div class="post-profile-icon">
<img src="images/profile-pic.png"><i class="fas fa-caret-down"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<p>Copy Right 2023 - Discuss </p>
</div>
<script src="script.js"></script>
</body>
</html>