-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (85 loc) · 3.35 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Axell - LinkTree</title>
</head>
<body>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
<script src="https://kit.fontawesome.com/bb6d886fd4.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" />
<div class="aboutMe">
HI THERE! I'M AXELL,
</div>
<div class="detailsMe">
I consider myself a problem-solver person, adaptable to change and I am looking for more and more difficult challenges because I want to evolve daily.
</div>
<!-- Logo -->
<img class="logo" src="images/pngBusiness.png" />
<h1>@axbecher</h1>
<!-- CONTACT -->
<div class="contact">
<address>
<a href="mailto:becheralexandru@gmail.com">📧 becheralexandru@gmail.com</a>
</address>
</div>
<!-- COLLEGE PROJECTS -->
<button type="button" class="collapsible">⇓ <b>COLLEGE PROJECTS</b> ⇓</button>
<div class="content">
<a class="axellshub" href="https://axbecher.github.io/ECommerceSite/" target="_blank">eCommerce Website - <strong>Axell's Hub</strong></a>
</div>
<!-- VOLUNTEER PROJECTS -->
<button type="button" class="collapsible">⇓ <b>VOLUNTEER PROJECTS</b> ⇓</button>
<div class="content">
<a class="viewhere" href="https://v1ewhere.wixsite.com/home" target="_blank">Viewhere - <strong>LEADERS</strong> Explore</a>
<a class="skillsdistrict" href="https://skillsdistrict.wixsite.com/landing">Skills District - <strong>Brighthub</strong></a>
</div>
<!-- Social Account -->
<div class="footer">
<hr>
<div class="social">
<table class="tg">
<thead>
<tr>
<th class="tg-0lax"></th>
<th class="tg-0lax"></th>
<th class="tg-0lax"></th>
</tr>
</thead>
<tbody>
<tr>
<td class="tg-0lax"><a class="linkedin" href="https://www.linkedin.com/in/becheralexandru" target="_blank"><i class="fab fa-linkedin"></i> LinkedIn</a></td>
<td class="tg-0lax"><a class="github" href="https://axbecher.github.io" target="_blank"><i class="fab fa-github"></i> Website</a></td>
<td class="tg-0lax"><a class="artstation" href="https://www.artstation.com/alexandrubecher" target="_blank"><i class="fab fa-artstation"></i> Artstation</a></td>
</tr>
<tr>
<td class="tg-0lax"><a class="youtube" href="https://www.youtube.com/channel/UCCESDSyqY9_TV_V5rNzE1JQ" target="_blank"><i class="fab fa-youtube"></i> Youtube</a></td>
<td class="tg-0lax"><a class="twitter" href="https://twitter.com/axbecher" target="_blank"><i class="fab fa-twitter"></i> Twitter</a></td>
<td class="tg-0lax"></td>
</tr>
<tr>
<td class="tg-0lax"></td>
<td class="tg-0lax"></td>
<td class="tg-0lax"></td>
</tr>
</tbody>
</table>
</div>
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</body>
</html>