-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewfile.html
125 lines (101 loc) · 2.47 KB
/
newfile.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title> something about the website</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body{
background-image: url(images/3rd.jpg);
background-repeat: no-repeat;
}
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 180px;
}
div.gallery:hover {
border: 5px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
header{
display:flex;
align-items: center;
padding: 30px 10%;
}
.logo{
cursor: pointer;
}
.nav_links{
list_style:none;
}
.nav_links li{
display: inline-block;
padding: 0px 20px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
</style>
</head>
<body>
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
<li style="float:right"><a href="#">Log in</a></li>
<li style="float:right"><a href="#">#</a></li>
</ul>
<hr>
<div class="gallery">
<a target="_blank" href="images/4th.jpg">
<img src="images/4th.jpg" alt="Catogary" width="600" height="400">
</a>
<div class="desc">catogary</div>
</div>
<div class="gallery">
<a target="_blank" href="img_forest.jpg">
<img src="images/5th.jpg" alt="catogary" width="600" height="400">
</a>
<div class="desc">catogary</div>
</div>
<div class="gallery">
<a target="_blank" href="img_lights.jpg">
<img src="images/6th.jpg" alt="catogary" width="600" height="400">
</a>
<div class="desc">catogary</div>
</div>
<div class="gallery">
<a target="_blank" href="img_mountains.jpg">
<img src="images/7th.jpg" alt="catogary" width="600" height="400">
</a>
<div class="desc">catogary</div>
</div>
</body>
</html>