-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (69 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alex's Portfolio | About</title>
<link rel="icon" href="assets/notebook.svg">
<link rel="stylesheet" href="style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B9FXS221SP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B9FXS221SP');
</script>
</head>
<body>
<div>
<h1 id="title">Alex's Portfolio</h1>
</div>
<div id="nav">
<h2>
<a href="index.html" class="nav" id="active">About</a>
<a href="resume.html" class="nav">Resume</a>
<a href="projects.html" class="nav">Projects</a>
<a href="school.html" class="nav">School Projects</a>
</h2>
</div>
<div class="body">
<img src="assets/profile.jpg" alt="profile" id="profile">
<div id="info">
<a href="mailto:alexcluff16@gmail.com" , class="pinfo">
<img src="assets/email.svg" alt="phone" class=smallicon>
alexcluff16@gmail.com <br>
</a>
<a href="tel:+17403969652" class="pinfo">
<img src="assets/phone.svg" alt="email" class="smallicon">
740-396-9652 <br>
</a>
<a href="https://github.com/cluffa" class="pinfo">
<img src="assets/github.svg" alt="github" class="smallicon">
github.com/cluffa<br>
</a>
<a href="https://huggingface.co/cluffa" class="pinfo">
<img src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg" alt="huggingface" class="smallicon">
huggingface.co/cluffa<br>
</a>
</div>
<div id="intro">
<p>
Hello, I'm Alex
<br><br>
I'm a data enthusiast with proficiency in R, Python, Julia, SQL, and Tableau. I have a passion for data analysis, visualization, machine learning, and AI.
<br><br>
My portfolio demonstrates my ability to create interactive dashboards, build machine learning models, and apply various data science methods to find answers and solve problems.
<br><br>
I'm always curious and hungry for new knowledge and opportunities in the data analytics and data science domain. I would love to connect with you and explore how we can work together to deliver data-driven value.
</p>
<!-- <br>
<a href="https://github.com/cluffa" class="githubstats">
<img src="https://github.com/cluffa/cluffa/raw/main/images/userstats.svg" alt="githubstats">
</a> -->
</div>
</div>
<script src="script.js"></script>
</body>
</html>