-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (80 loc) · 3.56 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
<!DOCTYPE html>
<html lang = "eg">
<head>
<link rel="stylesheet" href="styles.css">
<title>Portfolio</title>
<script type= "text/javascript" src = "main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body onload= "getDate()">
<section class = "navbarSection">
<nav class="navbar">
<ul class = "navbarList">
<li><a href="#aboutMeTitle">About Me</a></li>
<li><a href="#projectsTitle">Projects</a></li>
<li><a href="#skillsTitle">Skills</a></li>
<li><a href="#coursesTitle">Courses</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</section>
<section class = "title">
<h1>Alex Volchek</h1>
</section>
<section class = "aboutMe">
<h2 id = "aboutMeTitle">About Me</h2>
<div class = "img">
<a href="https://www.linkedin.com/in/alex-volchek-579496171/" target = _blank><img src="assets/images/imageME.jpeg" alt="HTML tutorial"></a>
</div>
<p id = "aboutMeP">Hi! I'm Alex Volchek, a senior studying Computer Science in NYC. I am passionate about problem solving and optimization, love reading sceince fiction, and have made my entire personality about good food.</p>
</section>
<section class = projects>
<h2 id = "projectsTitle">Projects</h2>
<ul>
<li><a href = "https://github.com/alexvolchek615/stroke-predictions-ml-model" target = _blank>Interactive Machine Learning project predicting risk of stroke</a></li>
<li><a href = "https://github.com/alexvolchek615/memory_allocator" target = _blank>Memory Allocator Implementation using C</a></li>
<li><a href = "https://github.com/alexvolchek615/COVID19Companies" target = _blank>Data Analysis project on companies created during COVID- 19</a></li>
<li><a href = "index.html">This portfolio using HTML, CSS, JavaScript</a></li>
</ul>
</section>
<section class = "skills">
<h2 id = "skillsTitle"> Skills </h2>
<div id = "skillImages">
<img src = "assets/images/python.png" alt = "python">
<img src = "assets/images/java.png" alt = "java">
<img src = "assets/images/c.png" alt = "c">
<img src = "assets/images/javascript.png" alt = "javascript">
<img src = "assets/images/html.png" alt = "html">
<img src = "assets/images/css.png" alt = "css">
</div>
</section>
<section class = "courses">
<h2 id = "coursesTitle">Courses</h2>
<ul>
<li>Applied Machine Learning</li>
<li>Computer Systems</li>
<li>Algorithms</li>
<li>Applied Linux Programming and Scripting</li>
<li>Data Structures</li>
<li>Discrete Structures</li>
<li>Object Oriented Programming</li>
<li>Programming Languages</li>
<li>Calculus 1</li>
<li>Calculus 2</li>
<li>Linear Algebra</li>
<li>Business analytics and programming</li>
<li>Intro to Computer Science</li>
<li>Intro to Information Systems</li>
</ul>
</section>
<section class = "scrollUp">
<i class="scroll-up" id="scroll-up"
><img onclick="scrollUp()"
src="assets/images/icons8-double-up.gif"
class="socicon up-arrow"
alt="scroll-up"
/></i>
</section>
</body>
<footer><p>Up to date as of <span id ="date">?</span></p></footer>
</html>