-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (115 loc) · 4.31 KB
/
Copy pathindex.html
File metadata and controls
124 lines (115 loc) · 4.31 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tanaboon J. Resume</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
background-color: #2c3e50; /* Dark background color */
color: #ecf0f1; /* Light text color */
}
h1 {
color: #3498db;
}
p {
margin-bottom: 10px;
}
ul {
list-style-type: none;
padding: 0;
}
ul li::before {
content: '•';
margin-right: 5px;
color: #3498db;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.blog-container {
background-color: #34495e; /* Box background color */
padding: 15px;
margin-top: 15px;
border-radius: 8px;
}
.blog-entry {
margin-bottom: 20px;
}
.blog-entry h2 {
color: #3498db;
}
.blog-entry p {
margin-bottom: 10px;
}
/* Responsive layout with one column on small screens */
@media screen and (max-width: 600px) {
.blog-entry {
margin-bottom: 15px; /* Adjust spacing for small screens */
}
}
/* Two columns for blog entries on larger screens */
@media screen and (min-width: 601px) {
.blog-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.blog-entry {
flex-basis: calc(50% - 20px);
}
}
</style>
</head>
<body>
<header>
<h1>Hey, I'm Tanaboon Jewriyavetch</h1>
<p>A passionate computer engineering student from Thammasat School of Engineering</p>
</header>
<section>
<h2>Current Endeavors</h2>
<ul>
<li>I’m currently learning CS50's courses on edx</li>
<li>I'm also planning to learn Swift, Rust, Web Dev, and more</li>
</ul>
</section>
<section>
<h2>Contact</h2>
<ul>
<li><a href="mailto:tanaboon.jew@gmail.com" target="_blank">tanaboon.jew@gmail.com</a></li>
<li><a href="https://www.linkedin.com/in/tanaboonjew" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/tanaboonjew" target="_blank">GitHub</a></li>
</ul>
</section>
<section>
<h2>Projects & Experience</h2>
<section class="blog-container">
<div class="blog-entry">
<a href="https://github.com/TanaboonJew/EasyMath" target="_blank"><h2>EasyMath</h2></a>
<p>This project, hosted on GitHub, is a Python application that generates simple math questions and saves them as Word documents. The application allows you to specify the number of pages and whether you want the output in PDF format. Each page contains one hundred questions.</p>
</div>
<div class="blog-entry">
<h2>Huawei ICT Competition 2023-2024</h2>
<p>Represented Thailand in the Computing Track. The competition involved solving computing problems, showcasing technical skills, collaborating with fellow participants, and compete with young talent from across the region.</p>
</div>
<!--
<div class="blog-entry">
<h2>Project template</h2>
<p>Project description.</p>
</div>
-->
</section>
</section>
<section>
<h2>Languages and Tools</h2>
<p>Python, C, Java, Django, Arduino, Blender, Git, Linux</p>
</section>
</body>
</html>