modified: valitovgaziz/html/index.html
new file: valitovgaziz/html/style.css Add tyle file and delete style into heade index.html file's
This commit is contained in:
@@ -3,123 +3,17 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<title>Валитов Газиз - Fullstack разработчик</title>
|
||||
<style>
|
||||
:root {
|
||||
--primary: #2c3e50;
|
||||
--secondary: #3498db;
|
||||
--light: #ecf0f1;
|
||||
--dark: #1a252f;
|
||||
--success: #2ecc71;
|
||||
}
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
header {
|
||||
background-color: var(--primary);
|
||||
color: white;
|
||||
padding: 2rem 0;
|
||||
text-align: center;
|
||||
margin-bottom: 2rem;
|
||||
border-radius: 0 0 10px 10px;
|
||||
}
|
||||
h1, h2, h3 {
|
||||
color: var(--primary);
|
||||
}
|
||||
h1 {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.contact-info {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.section {
|
||||
background: white;
|
||||
padding: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
|
||||
}
|
||||
.skills-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
}
|
||||
.skill-tag {
|
||||
background-color: var(--secondary);
|
||||
color: white;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 20px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding-left: 30px;
|
||||
}
|
||||
.timeline:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 2px;
|
||||
background: var(--secondary);
|
||||
}
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
.timeline-item:before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: -30px;
|
||||
top: 5px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: var(--primary);
|
||||
border: 2px solid var(--secondary);
|
||||
}
|
||||
.project-link {
|
||||
display: inline-block;
|
||||
margin-top: 0.5rem;
|
||||
color: var(--secondary);
|
||||
text-decoration: none;
|
||||
}
|
||||
.project-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 2rem 0;
|
||||
color: var(--dark);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.contact-info {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Валитов Газиз Камилевич</h1>
|
||||
<p>Fullstack-разработчик</p>
|
||||
<div class="contact-info">
|
||||
<span>+7 (904) 4513447</span>
|
||||
<span>+7(904)451- 34 - 47</span>
|
||||
<span>valitovgaziz@yandex.ru</span>
|
||||
<span>https://t.me/valitovgaziz</span>
|
||||
<span>Уфа, Россия</span>
|
||||
</div>
|
||||
</header>
|
||||
@@ -210,12 +104,11 @@
|
||||
|
||||
<div class="section">
|
||||
<h2>Проекты и достижения</h2>
|
||||
<p>Все мои проекты находятся в открытом доступе на <a href="https://github.com/valitovgaziz" class="project-link" target="_blank">GitHub</a>. Последние работы также доступны на <a href="https://gitverse.ru" class="project-link" target="_blank">gitverse.ru</a> в закрытых репозиториях (доступ по запросу).</p>
|
||||
<p>Хорошо ориентируюсь в ООП и паттернах проектирования. Изучил функциональные и объектно-ориентированные парадигмы программирования.</p>
|
||||
<p>Все мои проекты находятся в открытом доступе на <a href="https://github.com/valitovgaziz" class="project-link" target="_blank">GitHub</a>.</p>
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<p>© 2025 Валитов Газиз Камилевич | Резюме обновлено 2 июля 2025</p>
|
||||
<p>© 2025 Валитов Газиз Камилевич</p>
|
||||
<p>Предпочитаемые IDE: IntelliJ IDEA, VS Code, Fleet</p>
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
@@ -0,0 +1,108 @@
|
||||
:root {
|
||||
--primary: #2c3e50;
|
||||
--secondary: #3498db;
|
||||
--light: #ecf0f1;
|
||||
--dark: #1a252f;
|
||||
--success: #2ecc71;
|
||||
}
|
||||
body {
|
||||
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
max-width: 1200px;
|
||||
margin: 0 auto;
|
||||
padding: 0 20px;
|
||||
background-color: #f9f9f9;
|
||||
}
|
||||
header {
|
||||
background-color: var(--primary);
|
||||
color: white;
|
||||
padding: 2rem 0;
|
||||
text-align: center;
|
||||
margin-bottom: 2rem;
|
||||
border-radius: 0 0 10px 10px;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3 {
|
||||
color: var(--primary);
|
||||
}
|
||||
h1 {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
.contact-info {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 2rem;
|
||||
margin-bottom: 1rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
.section {
|
||||
background: white;
|
||||
padding: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.skills-container {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
}
|
||||
.skill-tag {
|
||||
background-color: var(--secondary);
|
||||
color: white;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 20px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding-left: 30px;
|
||||
}
|
||||
.timeline:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 2px;
|
||||
background: var(--secondary);
|
||||
}
|
||||
.timeline-item {
|
||||
position: relative;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
.timeline-item:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: -30px;
|
||||
top: 5px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
border-radius: 50%;
|
||||
background: var(--primary);
|
||||
border: 2px solid var(--secondary);
|
||||
}
|
||||
.project-link {
|
||||
display: inline-block;
|
||||
margin-top: 0.5rem;
|
||||
color: var(--secondary);
|
||||
text-decoration: none;
|
||||
}
|
||||
.project-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 2rem 0;
|
||||
color: var(--dark);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.contact-info {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user