-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-about.html
98 lines (84 loc) · 3.51 KB
/
page-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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=PT+Serif&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Cinzel&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<!--ヘッダー-->
<header>
<!--メニューバー-->
<div class="button_container" id="toggle">
<span class="top"></span>
<span class="middle"></span>
<span class="bottom"></span>
</div>
<div class="overlay" id="overlay">
<nav class="overlay-menu">
<ul>
<li ><a href="index.html">Home</a></li>
<li><a href="page-about.html">About Me</a></li>
<li><a href="page-portfolio.html">Portfolio</a></li>
<li><a href="page-contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="maincontents">
<!--タイトル-->
<div class="my_introduction">
<h1 class="myname">About Me</h1>
</div>
<!--My Picture-->
<div class="my_picture">
<img src="./image/YujiMizutani.jpg" alt="my picture">
</div>
<div class="about_me">
<p>水谷 侑二 (Mizutani Yuji)</p>
</div>
<div class="introduction_text">
<p>
1993年:滋賀県の琵琶湖の近くに生まれ、大地に育まれる<br><br>
2008年:高校受験の時に通った塾で、先生と仲間に恵まれ勉強の楽しさに目覚める<br><br>
2009年-2012年:高校は勉強にのめり込み、3年間成績学年一位をキープし続けた。(サッカー部としての活動もちゃんと頑張っていました)<br><br>
2013年:京都大学工学部電気電子工学科に入学し、回路理論や情報理論を中心に学ぶ<br><br>
2017年:京都大学大学院情報学研究に進学し、5Gを志向した無線通信技術について学ぶ<br><br>
2019年:NTTドコモに入社し、会社で働きながら、プログラミングやAdobeソフトを用いた副業を通して個人スキルを磨き続けている。<br><br>
【保有スキル】<br>
HTML / CSS / Java Script (JQuery) / Wordpress / PHP / Ruby (Ruby on Rails) / Python / Adobe Premire Pro<br><br>
【対応している仕事】<br>
Web制作 / システム構築 / 機械学習による業務自動ツールの開発 / 映像編集
</p>
</div>
</section>
<footer>
<!--SNSアイコン-->
<div>
<ul class="follow-me">
<li><a href="https://twitter.com" class="twitter"></a></li>
<li><a href="https://www.facebook.com" class="facebook"></a></li>
<li><a href="https://www.instagram.com" class="instagram"></a></li>
<li><a href="https://www.youtube.com" class="youtube"></a></li>
</ul>
</div>
<!--コピーライト-->
<div id="copyright">
Copyright © 2019 Yuji MIZUTANI All Rights Reserved.
</div>
</footer>
<script src="vendor/jquery-2.2.4.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="bootstrap/js/bootstrap.js"></script>
<script src="vendor/jquery.waypoints.min.js"></script>
<script src="vendor/jquery.magnific-popup.min.js"></script>
<script src="vendor/mobile-detect.min.js"></script>
<script src="main.js"></script>
</body>
</html>