-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass1.html
More file actions
84 lines (64 loc) · 2.32 KB
/
class1.html
File metadata and controls
84 lines (64 loc) · 2.32 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel ="stylesheet" href="./style.css" >
</head>
<body style="background-color: aqua;">
<div>
<div class="border" >
<h1 class="animation"> Hello world </h1>
<h4 >Hello world</h4>
<h5>Hello world</h5>
</div>
<div class ="box flex-box " style="position: relative;">
<div class ="box background_colour">
<!-- ordered list -->
<p> ordered list </p>
<ol>
<li class="hover_effect2">Item 1</li>
<li class="hover_effect2">Item 2</li>
<li class="hover_effect2">Item 3</li>
</ol>
<!--unordered list-->
<p> Unordered list </p>
<ul>
<li> student 1</li>
<li> student 2</li>
<li> student 3</li>
</ul>
</div>
<div class ="box background_colour">
<!--Description List -->
<dl>
<dt>Description </dt>
<dd>Man is mortal </dd>
</dl>
</div>
<div class ="box background_colour">
<ul>
<li > <a href="https://www.google.com" target="_blank" class="hover_effect"> Google</a></li>
<li> <a href="./aboutme.html">About</a> </li>
<li> <a href="mailto:eva299299@gmail.com">Contact</a></li>
</ul>
</div>
</div>
<div class ="box flex-box">
<!--Description List -->
<!--Multimedia -->
<img src="./Photo/JuLogo.png" alt="Ju JuLogo" class="box3" >
<iframe width="400" height="200" src="https://www.youtube.com/embed/3YFUQDRL1s4?si=5v1xiq6xTmH_WZUy"
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>
<div class ="box4 ">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3648.21960706673!2d90.26246359999996!3d23.881830199999992!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755e99900000001%3A0x2debf98e950c72ca!2sJahangirnagar%20University!5e0!3m2!1sen!2sbd!4v1746999400194!5m2!1sen!2sbd" width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
</div>
</body>
</html>