-
Notifications
You must be signed in to change notification settings - Fork 0
/
Example1.html
95 lines (90 loc) · 2.81 KB
/
Example1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Formatting tags</title>
<style type="text/css">
.container{
height: 500px;
width: 800px;
border: 10px solid black;
margin: 150px 450px;
overflow: hidden;
}
.soldier{
margin: 200px 700px;
transition-duration: 3s;
}
.soldier:hover
{
border-radius: 350px;
box-shadow: 0px 0px 30px black;
transform: translate(30px, -50px);
transform: rotate3d(0, 0, 1, 45deg);
}
.flip-diagonal-2-bck {
-webkit-animation: flip-diagonal-2-bck 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
animation: flip-diagonal-2-bck 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}
/* ----------------------------------------------
* Generated by Animista on 2024-4-9 11:48:43
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */
/**
* ----------------------------------------
* animation flip-diagonal-2-bck
* ----------------------------------------
*/
@-webkit-keyframes flip-diagonal-2-bck {
0% {
-webkit-transform: translateZ(0) rotate3d(-1, 1, 0, 0deg);
transform: translateZ(0) rotate3d(-1, 1, 0, 0deg);
}
100% {
-webkit-transform: translateZ(-260px) rotate3d(-1, 1, 0, -180deg);
transform: translateZ(-260px) rotate3d(-1, 1, 0, -180deg);
}
}
@keyframes flip-diagonal-2-bck {
0% {
-webkit-transform: translateZ(0) rotate3d(-1, 1, 0, 0deg);
transform: translateZ(0) rotate3d(-1, 1, 0, 0deg);
}
100% {
-webkit-transform: translateZ(-260px) rotate3d(-1, 1, 0, -180deg);
transform: translateZ(-260px) rotate3d(-1, 1, 0, -180deg);
}
}
</style>
</head>
<body>
<h1>Formatting Tag</h1>
<p>This text is in<b>bold</b></p>
<p>This text is in<i>bold</i>italic</p>
<p>This text is in<u>underline</u></p>
<p>This text has been<strike>Striked</strike></p>
<p>This text has been<mark>Marked</mark></p>
<p>This text is eample of<sup>2</sup></p>
<p>This text is example of<sub>Subscripted</sub></p>
<p><small>This text</small>Hello<big>Hello</big></p>
<p>Monospace <tt>Monospace</tt></p>
<pre>
class Demo1
{
public static void main(String[] args)
{
System.out.println("Hello");
}
}
</pre>
<div class="container">
<img src="C:\Users\Akshata Naikwadi\OneDrive\Pictures\Screenshots\Screenshot (153).png" height="590px" width="800px" class="flip-diagonal-2-bck">
}
</div>
<div class="soldier">
<img src="C:\Users\Akshata Naikwadi\OneDrive\Pictures\Screenshots\Screenshot 2023-12-23 232015.png" height="590px" width="800px">
</body>
</html>