-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (80 loc) · 4.07 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, height=device-height">
<title>Jerit3787</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="fonts/font-styles.css" rel="stylesheet">
<link href="fonts/font-Poppins.css" rel="stylesheet">
<link href="fonts/font-OpenSans.css" rel="stylesheet">
</head>
<!-- start of body tag -->
<body>
<!-- start of container -->
<div class="container">
<!-- start of top panel -->
<div class="profilePanel">
<img class="profileImg" height="100px" width="100px" src="img/profileImg.png">
<h6 class="profileName">Danish Hakim</h6>
<div class="profileJobs">
<p id="profileJob" class="subtitle1">WEB & APP DEVELOPER</p>
<p id="profileJob" class="subtitle1">CYBERSECURITY ANALYST</p>
</div>
<p id="profileLoc" class="subtitle1">Selangor, MY</p>
<p id="profileStatus" class="subtitle1">My Passion is about discovering something new!</p>
<!-- start of social buttons -->
<div class="socialButtons">
<!-- start of twitter button-->
<div class="clickButton" onclick="location.href='https://www.twitter.com/jerit3787';">
<img height="20px" width="20px" src="https://img.icons8.com/android/24/000000/twitter.png " />
<p id="buttonText" class="subtitle1">@jerit3787</p>
</div>
<!-- end of twitter button -->
<!-- start of github button -->
<div class="clickButton" onclick="location.href='https://www.github.com/jerit3787' ; ">
<img height="20px" width="20px"
src="https://img.icons8.com/fluent-systems-filled/24/000000/github.png " />
<p id="buttonText" class="subtitle1">@jerit3787</p>
</div>
<!-- end of github button-->
<!-- start of github button -->
<div class="clickButton" onclick="location.href='https://www.linkedin.com/in/jerit3787' ; ">
<img width="24" height="24" src="https://img.icons8.com/ios-glyphs/24/linkedin.png"
alt="linkedin" />
<p id="buttonText" class="subtitle1">in/jerit3787</p>
</div>
<!-- end of github button-->
<!-- start of email button-->
<div class="clickButton" onclick="location.href='mailto:[email protected]' ; ">
<img height="20px" width="20px" src="https://img.icons8.com/ios-filled/50/000000/apple-mail.png " />
<p id="buttonText" class="subtitle1">[email protected]</p>
</div>
<!-- end of email button -->
</div>
<!-- end of social buttons-->
</div>
<!-- end of top panel button-->
<!-- start of panel 1 -->
<div class="linkButton" onclick="location.href='https://jerit3787.github.io' ; ">
<img height="30px" width="30px" src="https://img.icons8.com/ios-filled/50/000000/portfolio.png " />
<h6 class="buttonText">Portfolio</h6>
</div>
<!-- end of panel 1 -->
<!-- start of panel 2 -->
<div class="linkButton" onclick="location.href='https://jerit3787.github.io/projects' ; ">
<img height="30px" width="30px"
src="https://img.icons8.com/material-sharp/24/000000/group-of-projects.png " />
<h6 class="buttonText">My projects</h6>
</div>
<!-- end of panel 2 -->
<!-- start of panel 2 -->
<div class="linkButton" onclick="location.href='https://jerit3787.github.io/ctf' ; ">
<img height="30px" width="30px" src="https://img.icons8.com/material-sharp/24/000000/imac-winner.png" />
<h6 class="buttonText">My CTF Writeup Blog</h6>
</div>
<!-- end of panel 2 -->
</div>
<!-- end of container -->
</body>
<!-- end of body tag -->
</html>
<!-- end of html tag -->