-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path100-projects-005-resume2.html
More file actions
107 lines (103 loc) · 3.92 KB
/
100-projects-005-resume2.html
File metadata and controls
107 lines (103 loc) · 3.92 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="100-projects-005-resume2.css">
<title>My Online Resume</title>
</head>
<body>
<div class="container">
<aside>
<div id="namecard">
<img src="images/100-projects-005-resume2.jpg" width="150px">
<h1>Kyle Sowers</h1>
<p>Every day is the best day of my life</p>
</div>
<br><br><br><br>
<div id="detail">
<p>San Antonio, Texas</p>
<p>kyle.a.sowers@gmail.com</p>
</div>
<div id="sns">
<h2>Facebbok</h2>
<h2>Youtube</h2>
<h2>Instagram</h2>
</div>
</aside>
<div class="main" id="main">
<section>
<h2 class="subtitle">Let me introduce myself.</h2>
<p>I have a strong interest in<br><mark>front-end web technologies, back-end programming</mark>, and book production.</p>
<p>I currently reside in San Antonio, Texas.</p>
<br><hr>
</section>
<hr>
<section>
<h2 class="subtitle">Experience</h2>
<ul>
<li>Web Design
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
</ul>
</li>
<li>Back-end Tech
<ul>
<li>PHP</li>
<li>Database</li>
<li>Hosting</li>
</ul>
</li>
<li>Business
<ul>
<li>Coding Projects</li>
<li>Programs Managerial</li>
<li>Retail</li>
</ul>
</li>
</ul>
<br><hr>
</section>
<section>
<h2 class="subtitle">Skills</h2>
<ul>
<li>Project Management</li>
<li>Critical Thinking</li>
<li>People</li>
</ul>
<br><hr>
</section>
<section>
<h2 class="subtitle">Education</h2>
<table>
<caption>Educational Background</caption>
<thead>
<tr>
<th>school</th>
<th>major</th>
<th>term</th>
<th>status</th>
</tr>
</thead>
<tbody>
<tr>
<td>American Military University</td>
<td>Business Administration</td>
<td>2015.2 ~ 2019.10</td>
<td>finish</td>
</tr>
<tr>
<td>American Military University</td>
<td>Criminal Justice</td>
<td>2020.1 ~ current</td>
<td>active</td>
</tr>
</tbody>
</table>
</section>
</div>
</div>
<script src="100-projects-005-resume2.js"></script>
</body>
</html>