-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (40 loc) · 2.09 KB
/
index.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Image Gallery</title>
<meta name="viewport" content="width=device-width">
<!-- Adding the CSS file -->
<link rel="stylesheet" href="css/style.css">
<!-- Changing the icon -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- Adding Font-Awesome CDN-->
<script src="https://use.fontawesome.com/06a803449c.js"></script>
<!-- Adding Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
</head>
<body>
<div class="container">
<h1 class="neon"><i class="fa fa-camera-retro fa-2x"></i> Image Gallery</h1>
<h3 class="">Hi, buddy. I'm Dzenis and welcome to my gallery app!</h3>
<!--Let's add the image that welcomes the user-->
<div class="main-img">
<img src="https://images.pexels.com/photos/290465/pexels-photo-290465.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb"
id="current">
</div>
<!-- Adding additional static data -->
<div class="imgs">
<img src="https://images.pexels.com/photos/230875/pexels-photo-230875.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb">
<img src="https://images.pexels.com/photos/128193/pexels-photo-128193.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb">
<img src="https://images.pexels.com/photos/373290/pexels-photo-373290.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb">
<img src="https://images.pexels.com/photos/757432/pexels-photo-757432.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb">
<img src="https://images.pexels.com/photos/802024/pexels-photo-802024.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb">
<img src="https://images.pexels.com/photos/745243/pexels-photo-745243.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb">
<img src="https://images.pexels.com/photos/446974/pexels-photo-446974.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb">
<img src="https://images.pexels.com/photos/175328/pexels-photo-175328.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb">
</div>
</div>
<!-- Adding the js file -->
<script src="js/index.js"></script>
</body>
</html>