-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGallery.html
107 lines (86 loc) · 2.18 KB
/
Gallery.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gallery</title>
<style>
*{
margin: 0;padding: 0;
box-sizing: border-box;
}
body{
background: #E8FBFFA6;
text-decoration: none;
}
.menu{
display:inline-flex;
list-style: none;
align-items: center;
/* background:rgb(76,175,80);*/
background:#FD0000;
background-blend-mode: darken;
border-bottom: 5px solid black;
width:100vw;
position: sticky;
top: 0;
}
.menu a{
text-decoration: none;
-webkit-text-stroke-width: 2px;
color: #333;
}
.menu img{
width: 60px;
height: 60px;
border:5px solid white;
border-radius: 25px;
}
.menu li{
margin: 30px;
font-size:40px;
color: #333;
}
.diff{
-webkit-text-fill-color: white !important;
-webkit-text-stroke-color: white;
-webkit-text-stroke-width: 2px;
}
/*------section--------*/
section img{
height: 200px;
width: 120px;
margin: 10px;
border: 2px solid black;
}
/*---footer----*/
.foot{
-webkit-text-stroke-width: 1px;
background: #FD0000;
align-items: center;
justify-content: center;
color: white;
font-size: 35px;
border-top: 5px solid black;
position: sticky;
bottom: 0;
}
</style>
</head>
<body>
<nav class="menu">
<li><a href="index.html"><img src="logo2.png"></a></li>
<li class="diff">Gallery</li>
<li><a href="index.html">HOME</a></li>
<li><a href="mailto:[email protected]?subject=my problems&body=write your problems">CONTACT US</a></li>
</nav>
<section>
<img src="sujeet.jpg">
<img src="sujeet2.jpg">
<img src="computer1.jpg">
</section>
<footer class="foot">
<center> copyright 2021 ©</center>
</footer>
</body>
</html>