-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
65 lines (62 loc) · 1.85 KB
/
about.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
<!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>About Me</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>My photography portfolio!</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<h2>About Me</h2>
<p>Here is some information about me:</p>
<ol>
<li>Name: Jeewan Nandasena</li>
<li>Location: Badulla</li>
<li>Hobbies: Photography</li>
</ol>
<table>
<thead>
<tr>
<th>Camera</th>
<th>Lens</th>
<th>Aperture</th>
<th>ISO</th>
</tr>
</thead>
<tbody>
<tr>
<td>Canon EOS R</td>
<td>Canon RF 24-105mm f/4L IS USM</td>
<td>f/5.6</td>
<td>100</td>
</tr>
<tr>
<td>Canon EOS 5D Mark IV</td>
<td>Canon EF 70-200mm f/2.8L IS II USM</td>
<td>f/8</td>
<td>200</td>
</tr>
</tbody>
</table>
</div>
<footer>
<p>Created by Jeewan Nandasena</p>
<p>Check out my <a href="https://example.com">website</a></p>
</footer>
</body>
</html>