-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
134 lines (132 loc) · 4.22 KB
/
test.html
File metadata and controls
134 lines (132 loc) · 4.22 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
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Afraim Gerges - Web Developer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
overflow: hidden; /* Prevent body scrolling */
background: linear-gradient(to right, #f0f8ff 0%, #d6e0f0 100%); /* Subtle gradient */
}
.container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 800px;
padding: 30px;
background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
border-radius: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Softer shadow */
text-align: center;
animation: shine 2s infinite alternate; /* Add subtle animation */
}
@keyframes shine {
from {
background-color: rgba(255, 255, 255, 0.8);
}
to {
background-color: rgba(255, 255, 255, 1);
}
}
.intro {
font-size: 1.5em;
margin-bottom: 10px;
color: #333; /* Darker text color */
}
.about,
.skills,
.contact {
margin-bottom: 30px;
}
.about h2 {
font-size: 2em;
margin-bottom: 15px;
color: #007bff; /* Blue accent color */
}
.about p {
line-height: 1.6;
color: #666; /* Lighter text color */
}
.skills {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.skill {
margin: 10px;
padding: 15px;
border-radius: 10px;
background-color: #fff; /* Opaque background for skills */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease-in-out;
cursor: pointer;
position: relative; /* For hover effects */
}
.skill:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
/* Add hover effect - inner shadow */
&::after {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.1); /* Subtle black overlay */
opacity: 0;
transition: opacity 0.2s ease-in-out;
}
}
.skill:hover::after {
opacity: 0.3; /* Show overlay on hover */
}
.skill h3 {
font-size: 1.2em;
margin-bottom: 5px;
color: #333;
}
.contact a {
color: #007bff; /* Blue accent color for link */
text-decoration: none;
font-weight: bold;
}
</style>
</head>
<body>
<div class="container">
<h1 class="intro">Afraim Gerges - Web Developer</h1>
<p class="intro">I craft powerful websites that work for you, and love the thrill of the hunt when they don't.</p>
<div class="about">
<h2>About Me</h2>
<p>I'm a seasoned PHP and Laravel developer with 8 years of experience. I don't just build websites, I build websites that thrive. I'm an expert in website optimization, so your site will be lightning fast and rank high in search results. Need a WordPress wiz? I've got that covered too! And to make it all tick, I'm fluent in MySQL, ensuring your data is stored securely and efficiently. When things get buggy, don't worry - I love debugging the trickiest issues. I'm also comfortable wrangling Linux servers, so your website will have a strong foundation to grow on. Let's work together to bring your web vision to life, and make sure it runs like a dream.</p>
</div>
<div class="skills">
<div class="skill">
<h3>Code with a Kick</h3>
<p>Clean, efficient PHP & Laravel for scalable websites</p>
</div>
<div class="skill">
<h3>WordPress Whisperer</h3>
<p>Unlocking full potential - themes, plugins & more</p>
</div>
<div class="skill">
<h3>MySQL Maestro</h3>
<p>Design & manage databases for smooth website operation</p>
</div>
<div class="skill">
<h3>Debugging Detective</h3>
<p>Relishing the challenge to untangle complex website issues</p>
</div>
<div class="skill">
<h3>Linux Wrangler</h3>
<p>Configuring & maintaining servers for optimal performance</p>
</div>
</div>
<div