-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (104 loc) · 4.86 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
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="styles.css" rel="stylesheet">
<title>About</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
>
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script src="homepage.js"></script>
</head>
<body class="bg-black">
<div class="container-fluid vh-100">
<div class="row d-flex h-100">
<div class="col-sm-6 d-none d-sm-block">
<div class="d-flex vh-100 flex-column">
<div class="d-flex flex-column spacer">
<div class="spacer"></div>
<h2 class="super-title fg-white pr-5" style="text-align:right">Hello<br>There!</h2>
<div class="spacer"></div>
</div>
<nav id="nav1" class="btm-nav fg-white"></nav>
</div>
</div>
<div class="col-sm-6 bg-white">
<div class="d-flex vh-100 flex-column p-5 overflow-y-scroll">
<div class="spacer"></div>
<div>
<h5>I'm</h5>
<h1 class="" style="font-weight:bold">Thwin Htoo Aung</h1>
<div>
<h6>iOS Developer</h6>
</div>
<div class="height-25"></div>
<h6>About</h6>
<p>I have 3 and a half years worth of extensive knowledge on iOS development. Since technology advances and jump super fast, I'm always constantly learning and finding new ways or place to grow.</p>
<h6>For Now</h6>
<p>I'm currently taking CS50 course and polishing math knowledge. I will be back to industry soon.</p>
<h6>Languages</h6>
<div>
<kbd>Burmese</kbd>
<kbd>English</kbd>
</div>
<div class="height-25"></div>
<h6>Programming Languages</h6>
<div>
<kbd>Swift</kbd>
<kbd>Objective-C</kbd>
<kbd>C</kbd>
<kbd>C++</kbd>
<kbd>C#</kbd>
<kbd>Java</kbd>
<kbd>Python</kbd>
<kbd>Javascript</kbd>
<kbd>Gdscript</kbd>
</div>
<div class="height-25"></div>
<h6>Skills</h6>
<div>
<kbd>iOS Development</kbd>
<kbd>Combine</kbd>
<kbd>RxSwift</kbd>
<kbd>Core Data</kbd>
<kbd>Core Graphics</kbd>
<kbd>Quartz</kbd>
<kbd>Godot</kbd>
</div>
<div class="height-25"></div>
<div class="height-25"></div>
<div class="height-25"></div>
<div class="height-25"></div>
</div>
<div class="spacer"></div>
</div>
</div>
</div>
</div>
<!-- Mobile Nav Bar -->
<div class="stick-bottom-fix padding-rl-25 d-block d-sm-none bg-black">
<footer id="nav2" class="btm-nav fg-white"></footer>
</div>
<script>
$(document).ready(function(){
const name = "about";
add_menu_items({of: name, to: nav1});
add_menu_items({of: name, to: nav2});
});
</script>
</body>
</html>