-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (96 loc) · 5.12 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html>
<head>
<title>leafbird</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link class="include" rel="stylesheet" type="text/css" href="./style.css" />
<link class="include" rel="stylesheet" type="text/css" href="./css/bootstrap.min.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nanum+Gothic&family=Roboto:wght@700&display=swap" rel="stylesheet">
<script src="./js/bootstrap.min.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<div class="head-buffer">
</div>
<div class="row">
<div class="col-lg-8 offset-lg-2 col-md-10 offset-md-1">
<figure class="rounded intro">
<blockquote class="margin10">
필자에게 <span class="text-primary">왜 프로그래밍을 하느냐고 묻는다면, 주저없이 '재미(fun)'라고 답할 것이다.</span>
한 가지 덧붙이자면, 만약 프로그래밍보다 더 재미있는 일이 있다고 생각한다면, 역시 주저함 없이 프로그래밍 대신 그 일에 몰두할 것이다. 재미없는
일을 억지로 하면서 보내기에는 인생은 너무 짧지 않는가.
</blockquote>
<div class="base-buffer"></div>
<figcaption class="blockquote-footer text-end">
[마이크로 소프트웨어 잡지 특집 컬럼 - 이만용 리눅스 코리아 CTO의 글 중...]
</figcaption>
</figure>
</div>
</div>
<div class="base-buffer"></div>
<div class="row">
<!-- 이미지가 들어가는 블록 -->
<div class="col-lg-2 offset-lg-2 col-md-3 offset-md-1 col-sm-4 offset-sm-0">
<img class="rounded profile-image" src="./image/profile_new.jpg" width="140" />
</div>
<!-- 내용 테이블 들어가는 블록 -->
<div class="col-lg-6 offset-lg-0 col-md-7 offset-md-0 col-sm-12 offset-sm-0">
<ul class="list-inline profile-title">
<li class="list-inline-item">
<h1>leafbird.</h1>
</li>
<li class="list-inline-item">
<small>Online Game Server Programmer.</small>
</li>
</ul>
<table class="table outer-link">
<tr>
<td>Blog - Dev</td>
<td><a href="http://leafbird.github.io/devnote"
target="_blank">http://leafbird.github.io/devnote</a>
</td>
</tr>
<tr>
<td>Blog - Other</td>
<td><a href="http://leafbird.github.io/blog" target="_blank">http://leafbird.github.io/blog</a>
</td>
</tr>
<tr>
<td colspan="2">
<img src="image/dotnet.svg" class="badge-symbol" />
<img src="image/visualstudio-color.svg" class="badge-symbol" />
<img src="image/visualstudiocode-color.svg" class="badge-symbol" />
<img src="image/vim-color.svg" class="badge-symbol" />
<img src="image/unity.svg" class="badge-symbol" />
<img src="image/slack-color.svg" class="badge-symbol" />
<img src="image/teamcity-color.svg" class="badge-symbol" />
<a href="http://www.github.com/leafbird" target="_blank">
<img src="image/github.png" alt="www.github.com/leafbird" class="badge-symbol"></a>
<a href="http://www.github.com/StudioBside" target="_blank">
<img src="image/bside_logo.png" class="badge-bside" alt="www.github.com/StudioBside"></a>
</td>
</tr>
</table>
</div>
</div>
<div class="row">
<div class="col-lg-8 offset-lg-2 col-md-10 offset-md-1">
<h3>github contributions</h3>
<img src="https://ghchart.rshah.org/leafbird" alt="github contributions" style="width: 100%;" />
</div>
</div>
</div>
</body>
</html>