-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (61 loc) · 3.26 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
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="script.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 style="text-align:center">Enoch.Photography</h1>
<button class="tablink" onclick="openPage('Home', this, '#777')" id="defaultOpen">Home</button>
<button class="tablink" onclick="openPage('Photos', this, '#777')">Photos</button>
<button class="tablink" onclick="openPage('Contact', this, '#777')">Contact</button>
<button class="tablink" onclick="openPage('About', this, '#777')">About</button>
<div id="Home" class="tabcontent">
<h3>Welcome!</h3>
<p></p>
</div>
<div id="Photos" class="tabcontent">
<h3>Photos</h3>
<p>Here is some of my work:</p>
<img src="images/img1.jpg" style="width:1200px;height:1216px;">
<img src="images/img2.jpg" style="width:1200px;height:2114px;">
<img src="images/img3.jpg" style="width:1200px;height:674px;">
<img src="images/img4.jpg" style="width:1200px;height:2137px;">
<img src="images/img5.jpg" style="width:1200px;height:675px;">
<img src="images/img6.png" style="width:1200px;height:800px;">
<img src="images/img7.png" style="width:1200px;height:674px;">
<img src="images/img8.png" style="width:1200px;height:2137px;">
<img src="images/img9.png" style="width:1200px;height:674px;">
<img src="images/img10.png" style="width:1200px;height:800px;">
<img src="images/img11.png" style="width:1200px;height:1200px;">
<img src="images/img12.png" style="width:1200px;height:661px;">
<img src="images/img13.png" style="width:1200px;height:1200px;">
</div>
<div id="Contact" class="tabcontent">
<h3>Contact:</h3>
<p>You can contact me via email at <a href="mailto:enoch.photography@gmail.com">enoch.photography@gmail.com</a></p>
</div>
<div id="About" class="tabcontent">
<h3>About Enoch.Photography:</h3>
<p>I'm a photographer specializing in nature, landscape, and wildlife photography.</p>
<p>I started getting interested in photography in late 2019 when my sister took a course in videography and got a new camera. Eventually, I started to use that camera and slowly learned the basics of photography. I would constantly bring my camera everywhere, shooting as many things as I could in manual mode despite the reccomendations from my dad to learn to shoot in auto first. This would build my knowledge of camera technique and skills. Eventually I took a course in photography, learning more about composition and story telling. </p>
<h3>Cameras:</h3>
<p>
Canon 6D Mark II<br>
Canon EOS Rebel T6I
</p>
<h3>Lenses:</h3>
<p>
Canon EF 28-300mm f/3.5-5.6L IS USM Lens<br>
Canon EF 24-105mm f/3.5-5.6 IS STM Lens<br>
Canon EF 16-35mm f/2.8L III USM Lens
</p>
<h3>Other Work:</h3>
<p>I also do some coding in <a href="https://www.python.org/" target="_blank" rel="noopener noreferrer">Python</a>, <a href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank" rel="noopener noreferrer">HTML</a>, <a href="https://www.javascript.com" target="_blank" rel="noopener noreferrer">JavaScript</a>, and <a href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank" rel="noopener noreferrer">CSS</a>.</p>
</div>
<script>
document.getElementById("defaultOpen").click();
</script>
</body>
</html>