-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (100 loc) · 6.64 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
<!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>gilang sandhika putra</title>
<link rel="stylesheet" href="styles.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="profile">
<div class="photo" id="photo">
<img src="resources/original.png" alt="myphoto" id="myphoto"/>
<span id="Ltriangle" class="LT"></span>
<span id="Rtriangle" class="RT"></span>
<p id="sample">SAMPLE</p>
</div>
<div class="info">
<p>Hello world, i'm</p>
<h2>GILANG SANDHIKA PUTRA</h2>
<h3>Bachelor of Applied Science</h3>
</div>
<div class="account">
<a href="https://github.com/saandhikaa" target="_blank" class="a-github"><i class="fa-brands fa-square-github"></i></a>
<a href="https://linkedin.com/in/saandhikaa" target="_blank" class="a-linkedin"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://twitter.com/saandhikaa" target="_blank" class="a-twitter"><i class="fa-brands fa-square-twitter"></i></a>
<a href="https://instagram.com/astronaut.symphony" target="_blank" class="a-instagram"><i class="fa-brands fa-square-instagram"></i></a>
</div>
</div>
<div class="repositories">
<h2>Featured Project</h2>
<div class="projectlist">
<div class="project">
<h3>Fureyasphere</h3>
<p class="date">December 21, 2022</p>
<p>Fureyasphere stands as a state-of-the-art platform committed to delivering efficient and dependable application services.</p>
<div class="material">
<a href="https://github.com/topics/html" target="_blank"><button>html</button></a>
<a href="https://github.com/topics/css" target="_blank"><button>css</button></a>
<a href="https://github.com/topics/javascript" target="_blank"><button>javascript</button></a>
<a href="https://github.com/topics/php" target="_blank"><button>php</button></a>
<a href="https://github.com/topics/crud" target="_blank"><button>crud</button></a>
<a href="https://github.com/topics/mysqli" target="_blank"><button>mysqli</button></a>
</div>
<div class="link">
<a href="https://github.com/saandhikaa/fureyasphere" target="_blank"><button><span class="fa-brands fa-git-alt"></span><span class="button-text">Source code</span></button></a>
<a href="http://freya.infinityfreeapp.com" target="_blank"><button><span class="fa-sharp fa-solid fa-arrow-up-right-from-square"></span><span class="button-text">Visit website</span></button></a>
</div>
</div>
<div class="project">
<h3>Style Stockroom</h3>
<p class="date">November 10, 2023</p>
<p>StyleStockroom is an e-commerce platform built with Laravel, focusing on the sale of fashion and apparel. It demonstrates the use of Laravel in creating dynamic web applications.</p>
<div class="material">
<a href="https://github.com/topics/php" target="_blank"><button>php</button></a>
<a href="https://github.com/topics/laravel" target="_blank"><button>laravel</button></a>
<a href="https://github.com/topics/tailwindcss" target="_blank"><button>tailwind</button></a>
<a href="https://github.com/topics/javascript" target="_blank"><button>javascript</button></a>
<a href="https://github.com/topics/mysqli" target="_blank"><button>mysqli</button></a>
</div>
<div class="link">
<a href="https://github.com/saandhikaa/style-stockroom" target="_blank"><button><span class="fa-brands fa-git-alt"></span><span class="button-text">Source code</span></button></a>
</div>
</div>
<div class="project">
<h3>Robotic Arm</h3>
<p class="date">August 30, 2022</p>
<p>An Arduino-based robotic arm using inverse kinematics algorithm and GUI application that runs on Windows.</p>
<div class="material">
<a href="https://github.com/topics/arduino" target="_blank"><button>arduino</button></a>
<a href="https://github.com/topics/cpp" target="_blank"><button>cpp</button></a>
<a href="https://github.com/topics/vbnet" target="_blank"><button>vb.net</button></a>
</div>
<div class="link">
<a href="https://github.com/saandhikaa/robotic-arm" target="_blank"><button><span class="fa-brands fa-git-alt"></span><span class="button-text">Source code</span></button></a>
</div>
</div>
<div class="project">
<h3>CircuLabs</h3>
<p>This is a collection of Arduino projects that I have created and curated.</p>
<div class="material">
<a href="https://github.com/topics/arduino" target="_blank"><button>arduino</button></a>
<a href="https://github.com/topics/cpp" target="_blank"><button>cpp</button></a>
</div>
<div class="link">
<a href="https://github.com/saandhikaa/CircuLabs" target="_blank"><button><span class="fa-brands fa-git-alt"></span><span class="button-text">Source code</span></button></a>
</div>
</div>
</div>
</div>
</div>
<button id="scrollUpButton"><i class="fa-solid fa-arrow-up"></i></button>
<script src="functions.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>