-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
78 lines (74 loc) · 2.93 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
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About | 風景写真家「SNAPPERS」</title>
<link href="https://fonts.googleapis.com/css2?family=Bitter:wght@400;700&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body id="about">
<!--header始まり-->
<header>
<div class="logo">
<a href="index.html">
<img src="images/logo.png" alt="SNAPPERS">
</a>
</div>
<nav>
<ul class="global-nav">
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!--header終わり-->
<!--wrap始まり-->
<div id="wrap">
<div class="content">
<div class="main-center">
<h1>About</h1>
<p>SNAPPERS代表、山田太郎のプロフィールや経歴の紹介ページです。</p>
<section class="profile clearfix">
<div class="profile-txt">
<h2 class="icon">Profile</h2>
<p><span>SNAPPERS 代表:山田 太郎</span><br>アナログ、デジタルを問わず、トイカメラやポラロイド、ビデオカメラに至るまで、あらゆるカメラに夢中になって遊んでいるうちに自然とカメラマンとしての道を志すようになる。<br>大学卒業後、有名カメラマンのアシスタントを経て渡米。世界各国を放浪しながら撮影をする中で、現在のアウトドアカメラマンとしてのスタイルを確立する。2016年に帰国し、「SNAPPERS」を設立。<br>現在は、雑誌の表紙やカタログの撮影を中心に、映像作品などにもカメラマンとして参加するなど幅広く活躍している。</p>
</div>
<img src="images/about-profile.png" alt="山田太郎プロフィール画像" class="profile-image">
</section>
<section class="career">
<h2 class="icon">Career and Job history</h2>
<table>
<tr>
<th>1994年3月</th>
<td>丸三角芸術大学写真家 卒業 服部写真研究所に入社、服部英明氏に師事</td>
</tr>
<tr>
<th>2002年3月</th>
<td>服部写真研究所を退所し渡米、世界各国を放浪しながら撮影を続ける</td>
</tr>
<tr>
<th>2012年8月</th>
<td>イタリア・ミラノで開催されたコンクールにて、審査員特別賞受賞</td>
</tr>
<tr>
<th>2016年1月</th>
<td>帰国し「SNAPPERS」を設立</td>
</tr>
<tr>
<th>2016年4月</th>
<td>Aichi Musiumnにて初の写真展「Snap!Snap!」を開催</td>
</tr>
</table>
</section>
</div>
</div>
</div>
<!--wrap終わり-->
<!--footer始まり-->
<footer>
<small>(C)2017 Hattori-studio.</small>
</footer>
<!--footer終わり-->
</body>
</html>