-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (67 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="Portfolio/css/main.css">
</head>
<body>
<div class="wrapper">
<h1 class="header">Hello, Carbonid1!</h1>
<ul>
<li>
<a href="Projects/Random-Quotes-Generator/index.html">Random Quotes Generator (SVG, JS) (March, 2018)</a>
</li>
<li>
<a href="Projects/webDevBlogN1/index.html">Simple adaptive template (HTML, CSS) (April, 2018)</a>
</li>
<li>
<a href="Projects/Calendar/index.html">Calendar on the native JS (ES6) (April, 2018)</a>
</li>
<li>
<a href="Projects/Calculator/index.html">Calculator (JS ES6) (May, 2018)</a>
</li>
<li>
<a href="https://codepen.io/Carbonid1/full/YLrZMy/">Line drawing (svg animation) (May, 2018)</a>
</li>
<li>
<a href="Projects/TicTacToeGame/index.html">Tic Tac Toe game (OLOO inheritance, Minmax algorithm) (May, 2018)</a>
</li>
<li>
<a href="https://mean-auth-app-15-06-2018.herokuapp.com/">MEAN authentication app (Angular, MongoDB, Express.js, Node.js) (June, 2018)</a>
</li>
<li>
<a href="https://nodekb-24-06-2018.herokuapp.com/">Articles manager (Pug, MongoDB, Express.js, Node.js, Google+ API) (June, 2018)</a>
</li>
<!--<li>
<a href="https://mern-shoppinglist-30-06-18.herokuapp.com/">MERN Shooping list (React, Redux) (June, 2018)</a>
</li> -->
</ul>
</div>
<!-- DISQUS -->
<div class="disqus">
<div id="disqus_thread"></div>
<script>
(function () { // DON'T EDIT BELOW THIS LINE
var d = document,
s = d.createElement('script');
s.src = 'https://andrewcarbon.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the
<a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a>
</noscript>
</div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120366350-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-120366350-1');
</script>
</body>
</html>