-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
executable file
·83 lines (80 loc) · 4.84 KB
/
index.php
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
<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/index.css" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c&display=swap" rel="stylesheet">
</head>
<body>
<?php include __DIR__ . '/header.php'; ?>
<div class="content">
<div class="container-fluid padding-none">
<div class="jumbotron jumbotron-fluid title_img text-center">
<div id="title_content" class="container">
<h1 class="title">にしこふ<br class="d-xs-block d-md-none">エンヂニヤリング</h1>
<p class="">東京でwebエンジニア・コーダーをしつつ、オーケストラの舞台にも立ちます。<br class="d-md-block">人を励ますことをよくします。</p>
<p class="">Web Engineer, Amateur Orchestra Violinist and spokesperson, Encourager</p>
<p class="">(: nsktdeluxe's portfolios :)</p>
</div>
</div>
<!-- 自己紹介 -->
<div class="container">
<div class="row">
<div class="col-xs-12 col-lg-8">
<h2>自己紹介</h2>
<h4>にしこさん(<a href="https://twitter.com/nsktdeluxe">@nsktdeluxe</a>)</h4>
<p class="indented-text">1992年4月、福島県にて生まれる。</p>
<p class="indented-text">大学卒業後、就活に失敗しダダ滑りするも、フリーター接客業を経て一念発起し2016年にプログラマー見習いに転身。</p>
<p class="indented-text">客先常駐でJavaのwebアプリケーション開発に3年ほど携わった後、「自社プロダクトに長く関わって圧倒的成長したい!」と転職を決意。</p>
<p class="indented-text">現在、株式会社日本情報マート <a href="https://jim.jp/">https://jim.jp/ </a>にで元気に修行中。<br />直近の業務としては、ランディングページ・バナー制作やweb記事のcssコーディングなどフロントエンド業務を中心に担当。</p>
<p class="indented-text">休日はアマチュアオーケストラのヴァイオリン奏者、および広報マンとして活動。</p>
<p class="indented-text">楽器奏者向け演奏記録サイト、みゅーぐ<a href="https://musig.net/"> https://musig.net/</a>開発チームにも在籍。</p>
<br />
</div>
<div class="col-xs-12 col-lg-4 text-right">
<img src="img/nsktdeluxe.jpeg" class="prof_img" alt="著者近影">
</div>
</div>
<div class="row">
<div class="col-12">
<h4>趣味</h4>
<p class="indented-text">人生(たのしいので)</p>
<p class="indented-text">知らない街のスーパーを眺めること</p>
<p class="indented-text">昭和歌謡のデュエット曲を一人二役すること</p>
<br />
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-4 text-center">
<p>Twitter(社員account)</p>
<a href="https://twitter.com/TomomiNishikata">
<i class="fab fa-twitter fa-2x"></i>
</a>
</div>
<div class="col-xs-12 col-md-4 text-center">
<p>Facebook</p>
<a href="https://www.facebook.com/nsktdeluxe" target="_blank">
<i class="fab fa-facebook fa-2x"></i>
</a>
</div>
<div class="col-xs-12 col-md-4 text-center">
<p>GitHub</p>
<a href="https://github.com/nsktdeluxe">
<i class="fab fa-github fa-2x"></i>
</a>
</div>
</div>
</div>
<!-- ページトップへボタン -->
<!--<div id="page_top">
<a href="#"></a>
</div> -->
</div>
</div>
<script type="text/javascript" src="/js/footerFixed.js"></script>
<?php include __DIR__ . '/footer.php'; ?>
</body>
</html>