-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhobbies.html
66 lines (58 loc) · 2.09 KB
/
hobbies.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
<!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>Photography Session</title>
<link rel="stylesheet" href="photography.css">
<button onclick="one()">1</button>
<button onclick="two()">2</button>
<button onclick="four()">4</button>
<script>
// Get the elements with class="column"
var elements = document.getElementsByClassName("column");
// Declare a "loop" variable
var i;
// Full-width images
function one() {
for (i = 0; i < elements.length; i++) {
elements[i].style.flex = "100%";
}
}
// Two images side by side
function two() {
for (i = 0; i < elements.length; i++) {
elements[i].style.flex = "50%";
}
}
// Four images side by side
function four() {
for (i = 0; i < elements.length; i++) {
elements[i].style.flex = "25%";
}
}
</script>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="research-experience.html">Research Interests</a>
<a href="hobbies.html">Other Interests</a>
<a href="contact.html">Contact me</a>
</nav>
<header>
<main>
<img src="image-container/photography/1.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/2.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/3.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/4.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/5.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/6.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/7.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/8.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/9.jpeg" height="auto" width="auto" alt="">
<img src="image-container/photography/10.jpeg" height="auto" width="auto" alt="">
</main>
</body>
</html>