forked from harsha-hl/Blockchain-Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.html
More file actions
121 lines (98 loc) · 2.99 KB
/
main.html
File metadata and controls
121 lines (98 loc) · 2.99 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
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
<!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>MY NFT VIEWER</title>
<style>
body{
margin:0 auto;
max-width: 1000px;
width:90%;
}
.container{
display:flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.item{
width:26%;
height: 300px;
border:1px solid black;
margin:10px;
display:flex;
flex-direction: column;
justify-content: space-between;
border-radius: 3px;
}
h3,p{
margin:5px;
margin-left: 13px;
margin-right: 13px;
}
p{
text-align: justify;
}
h3{
text-align: center;
}
img{
height:36%;
width:100%;
object-fit:initial;
}
#item-2,#item-5{
height:350px;
}
.Read{
text-align: center;
margin-top: 20px;
height: 10%;
padding: 5px;
padding-top: 8px;
background-color: rgb(117, 167, 170);
border:2px rgb(133, 121, 97);
margin-bottom: 23px;
margin-right: 39px;
margin-left: 39px;
border-radius: 5px;
color:honeydew;
}
video{
size: adjust 100% ;
}
</style>
</head>
<body style="background: radial-gradient(rgb(41, 34, 34),#a53aec)">
<div class="container">
<div class="item" id="item-1">
<video width=100% height=100% autoplay loop>
<source src="nft1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="item" id="item-2"> <video width=100% height=100% autoplay loop>
<source src="nft1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<div class="item" id="item-3"> <video width=100% height=100% autoplay loop>
<source src="nft1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<div class="item" id="item-4"> <video width=100% height=100% autoplay loop>
<source src="nft1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<div class="item" id="item-5"> <video width=100% height=100% autoplay loop>
<source src="nft1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
<div class="item" id="item-6"> <video width=100% height=100% autoplay loop>
<source src="nft1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video></div>
</div>
</body>
</html>