-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
173 lines (171 loc) · 6.96 KB
/
index.html
File metadata and controls
173 lines (171 loc) · 6.96 KB
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!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">
<link rel="stylesheet" href="./assets/css/main.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" crossorigin="anonymous">
<title>ServoCorp | Home</title>
</head>
<body>
<div class="mainContainer">
<div class="header">
<div class="headerText">
<h1>ServoCorp \
<span>
Home
</span>
</h1>
</div>
</div>
<div class="upper">
<div class="leftside">
<div class="column1">
<div class="left">
<div class="profile">
<div class="profilePic">
<img class="picture" src="./assets/img/profile.jpg" alt="Profile Picture">
</div>
<div class="timeDate">
<div class="time">
<p>
<span id="time"></span>
</p>
</div>
<div class="date">
<p>
<span id="date"></span>
</p>
</div>
</div>
</div>
<div class="buttons">
<a href="https://github.com/ServoCorp" target="__blank"><button class="button">Github</button></a>
<a href="/blog"> <button class="button">Blog</button></a>
</div>
</div>
<div class="right">
<div class="header">
<h1>ServoCorp.<span>dev</span></h1>
<hr>
<h2>Fullstack Engineer</h2>
</div>
<div class="dailyQuote">
<p class="quote" id="quote"></p>
<p class="author" id="author">—<a href="https://uselessfacts.jsph.pl/">Useless Facts</a> </p>
</div>
</div>
</div>
<div class="stats">
<div class="panel">
<li class="small">HTML & CSS</li>
<li class="small">JavaScript</li>
<li class="small">MongoDB</li>
<li class="small">Node.JS</li>
<li class="small">Vue.JS</li>
</div>
<div class="panel">
<li>Page Visits:</li>
<h2>2003</h2>
</div>
<div class="panel">
<li>API Status:</li>
<span>Maintenance</span>
</div>
</div>
</div>
<div class="rightside">
<div class="column2">
<div class="title">
<h1>Projects</h1>
</div>
<div class="projectList">
<li>
<a href="https://github.com/ServoCorp/servocorp.dev" target="__blank">
<h2>
<span class="impt">
This Website
</span>
</h2>
</a>
</li>
<li>
<a href="#">
<h2>
<span>
<a href="https://github.com/ServoCorp/Order-Summary-Component" target="__blank">Order Summary Component</a>
</span>
</h2>
</a>
</li>
<li>
<a href="#">
<h2>
<span>
<a href="https://github.com/ServoCorp/3-Column-Preview-Concept" target="__blank">3 Column Preview</a>
</span>
</h2>
</a>
</li>
<li>
<a href="#">
<h2>
<span>
<a href="https://github.com/ServoCorp/Client-popup-Lottery" target="__blank">Popup Scratch off Widget</a>
</span>
</h2>
</a>
</li>
<li>
<a href="#">
<h2>
<span>
<a href="https://github.com/ServoCorp/Stats-Summary-Card-Concept" target="__blank">Stats Presentation Component</a>
</span>
</h2>
</a>
</li>
<li>
<a href="#">
<h2>
<span>
<a href="https://github.com/ServoCorp/IP-Tracker-Website" target="__blank">IP Tracker with Display</a>
</span>
</h2>
</a>
</li>
<li>
<a href="#" target="__blank">
<h2>
<span>
Project 7
</span>
</h2>
</a>
</li>
</div>
<div class="eth">
<i class="fa fa-ethereum"></i>
<p>0x1927c1bA6cfFf59013bB518dbD60D58156688202</p>
</div>
</div>
<div class="contact">
<h1>Want to hire me?</h1>
<div class="email">
<p><i class="fa fa-envelope" aria-hidden="true"></i>contact@servocorp.dev</p>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="footerText">
<p>
Designed & Coded by ServoCorp ❤️
</p>
</div>
</div>
</div>
</body>
<script src="./assets/js/main.js"></script>
</html>