-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (116 loc) · 3.42 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav id="navbar" class="nav">
<ul class="nav-list">
<li>
<a href="#welcome-section">About</a>
</li>
<li>
<a href="#projects">Work</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
<section id="welcome-section" class="welcome-section">
<h1>你好, 我 是 基里尔 🦖</h1>
<p>a newcomer in a web developer world</p>
</section>
<section id="projects" class="projects-section">
<h2 class="projects-section-header">Check out some of my projects</h2>
<div class="projects-grid">
<a
href=""
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://1drv.ms/i/c/29d22d8eefaef5b5/IQO19a7vji3SIIApfZYBAAAAARY2gE_nXPY0cDk__iCN5pk?width=2458&height=1800"
alt="project"
/>
<p class="project-title">
<span class="code"></span>
Tribute Page
<span class="code"></span>
</p>
</a>
<a
href=""
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://1drv.ms/i/c/29d22d8eefaef5b5/IQO19a7vji3SIIApfJYBAAAAAZ45B24_5igYTu6uaFPBAOY?width=2878&height=1628"
alt="project"
/>
<p class="project-title">
<span class="code"></span>
Technical Documentation Page
<span class="code"></span>
</p>
</a>
<a
href=""
target="_blank"
class="project project-tile"
>
<img
class="project-image"
src="https://1drv.ms/i/c/29d22d8eefaef5b5/IQO19a7vji3SIIApe5YBAAAAAePG_kXgjsiJDA3ZuK0XNRk?width=2238&height=1288"
alt="project"
/>
<p class="project-title">
<span class="code"></span>
Product Landing Page
<span class="code"></span>
</p>
</a>
</div>
</section>
<section id="contact" class="contact-section">
<div class="contact-section-header">
<h2>Let's work together...</h2>
<p>How do you take your coffee?</p>
</div>
<div class="contact-links">
<a
href="https://www.linkedin.com"
target="_blank"
class="btn contact-details"
><i class="fab fa-linkedin"></i> LinkedIn</a
>
<a
id="profile-link"
href="https://freecodecamp.org"
target="_blank"
class="btn contact-details"
><i class="fab fa-freecodecamp"></i> freeCodeCamp</a
>
<a href="/cdn-cgi/l/email-protection#b5d0cdd4d8c5d9d0f5d0cdd4d8c5d9d09bd6dad8" class="btn contact-details"><i class="fas fa-at"></i> Send a mail</a
>
<a href="tel:+79770381469" class="btn contact-details"
><i class="fas fa-mobile-alt"></i> Call me</a
>
</div>
</section>
<footer>
<p>
**This portfolio is partly fake . All the projects and contact details
given are real.
</p>
<p>
© Created for
<a href="https://www.freecodecamp.com/" target="_blank"
>freeCodeCamp <i class="fab fa-free-code-camp"></i
></a>
</p>
</footer>
</body>
</html>