-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
139 lines (127 loc) · 4.83 KB
/
cv.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>amosnimos.com - CV</title>
<link rel="stylesheet" href="css/basic.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 5px 0;
text-align: center;
}
header h1 {
margin: 0;
}
.container {
width: 80%;
margin: 20px auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.services {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.service {
flex: 1;
margin: 10px;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
}
.service h3 {
margin-top: 0;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #333;
color: #fff;
//position: fixed;
width: 100%;
bottom: 0;
}
form div {
margin-bottom: 10px;
}
label {
display: block;
margin-bottom: 5px;
}
input, textarea {
width: 100%;
padding: 8px;
box-sizing: border-box;
}
button {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<header>
<h1>AMOSNIMOS</h1>
<h2>Top-Class Linux Full-Stack Bash Expert</h2>
<p>Specializing in CLI Tool Development</p>
</header>
<div class="container">
<section>
<h2>About Me</h2>
<p>With over a decade of experience in Linux systems and Bash scripting, I offer top-notch services in developing custom CLI tools to streamline your workflows and improve productivity. My expertise covers full stack web development, Linux development, from system administration to advanced scripting and automation.</p>
<p>Open projects porfolio: <a href="https://github.com/AmosNimos">https://github.com/AmosNimos</a></p>
<h2>Helping you thrive online and with technology!</h2>
<p>I offer a range of services to meet your web presence and IT needs.</p>
</section>
<section>
<h2>Services</h2>
<div class="services">
<div class="service">
<h3>Custom CLI Tool Development</h3>
<p>Create powerful command-line tools tailored to your specific needs. Whether it's automating tasks, managing data, or enhancing your workflow, I can build the tools you need.</p>
</div>
<div class="service">
<h3>Linux System Administration</h3>
<p>Comprehensive system administration services, including server setup, configuration, maintenance, and troubleshooting. Ensure your Linux systems run smoothly and efficiently.</p>
</div>
<div class="service">
<h3>Bash Scripting and Automation</h3>
<p>Automate repetitive tasks and optimize processes with custom Bash scripts. From simple scripts to complex automation solutions, I can help streamline your operations.</p>
</div>
<div class="service">
<h4>Static Site Creation & Management</h4>
<p>I can create clean, modern, and fast-loading websites perfect for showcasing your portfolio, business, or blog. I can also help you manage your existing static site, keeping it up-to-date and secure.</p>
</div>
<div class="service">
<h4>Database Management</h4>
<p>Need help with your website's database? I can set up and manage databases, ensuring your data is organized and accessible.</p>
</div>
<div class="service">
<h4>IT Counseling</h4>
<p>Not sure what tech solution is right for you? I can provide expert advice and guidance on a variety of IT needs, helping you find the best tools and strategies for your situation.</p>
</div>
</div>
</section>
<p>If you're interested in my services or have any questions, please feel free to reach out. I'm available for consultations and ready to discuss how I can assist with your Linux and Bash scripting needs.</p>
<a class="btn-v" href="contact.html">Contact me</a>
</div>
<footer>
© 2024 AMOSNIMOS. All rights reserved.
</footer>
</body>
</html>