-
Notifications
You must be signed in to change notification settings - Fork 0
/
image_links.html
120 lines (104 loc) · 3.72 KB
/
image_links.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
<!DOCTYPE html>
<html>
<head>
<title>Image Links</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.grid-container {
display: inline-grid;
grid-template-columns: auto auto auto auto;
background-color: #2196F3;
padding: 10px;
}
.grid-item {
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
font-size: 30px;
text-align: center;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
/* Style the content */
article {
-webkit-flex: 3;
-ms-flex: 3;
flex: 3;
background-color: #f1f1f1;
padding: 10px;
}
/* Container for flexboxes */
section {
display: -webkit-flex;
display: flex;
}
/* Style the header */
header {
background-color: #666;
padding: 15px;
text-align: left;
font-size: 10px;
color: white;}
aside {
width: 30%;
padding-left: 15px;
margin-left: 15px;
font-style: italic;
background-color: lightgray;
}
</style>
</head>
<body>
<header>
<h2 style="float: top left;">This is my Website</h2>
</header>
<div class="topnav">
<a class="active" href="https://www.youtube.com/watch?v=6vC4vLe5HTU&list=RD6vC4vLe5HTU&start_radio=1">Home</a>
<a href="https://www.foxnews.com/">Projects</a>
<a href="https://www.whatsapp.com/contact/?subject=messenger">Contact</a>
<a href="https://www.merriam-webster.com/dictionary/about">About</a>
</div>
<p>
<h3>MENU</h3>
<ol>
<li><a href="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\WATER_MELON.jpg">Melon</a></li>
<li><a href="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\APPLE.jpg">Apple</a></li>
<li><a href="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\pineapple.jpg">Pineapple</a></li>
</ol>
</p>
<p>
<a href="https://www.dataengineering.com.au/en/blog"><img src="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\Data_engineering.jpg"></a>
</p>
<div class="grid-container">
<div class="grid-item"><img src="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\pexels-chris-g-1643402.jpg" style="width:500px;height:500px;></div>
<div class="grid-item"><img src="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\pexels-erik-karits-3782463.jpg" style="width:500px;height:500px;></div>
<div class="grid-item"><img src="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\pexels-jeremy-bishop-2922672.jpg" style="width:500px;height:500px;></div>
<div class="grid-item"><img src="IMAGES/pexels-lachlan-ross-5967958.jpg" style="width:500px;height:500px;></div>
<div class="grid-item"><img src="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\pexels-lukas-rodriguez-3573351.jpg" style="width:500px;height:500px;></div>
<div class="grid-item"><img src="IMAGES/pexels-philippe-donn-826410.jpg" style="width:500px;height:500px;></div>
<div class="grid-item"><img src="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\pexels-photo-89770.jpeg" style="width:500px;height:500px;></div>
<div class="grid-item"><img src="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\pexels-ricky-esquivel-1701892.jpg" style="width:500px;height:500px;></div>
<div class="grid-item" ><img src="C:\Users\DILIGENCE\Documents\GitHub\SoftwareDevelopment\IMAGES\pexels-dominika-roseclay-5462212.jpg" style="width:500px;height:500px;></div>
</div>
</body>