-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (60 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Welcome</title>
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- Css Files -->
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/star.css">
<!--Jquery CDN -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Fonticon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="page-container">
<section id="intro-section">
<div id="intro-section-container">
<a id="projects-link" href="#projects-section">Projects</a>
<h1 class="intro-text" id="header">Welcome</h1>
<h6 class="intro-text" id="sub-header">Jdraiv, Software Developer</h6>
<div class="github-btn-container">
<button class="btn" id="github-btn" onclick="window.open('https://github.com/jdraiv', '_blank');">Github</button>
</div>
</div>
</section>
<section id="projects-section">
<div id="projects-section-container">
<div id="categories-container">
<div class="category-flex-item">
<button class="category-btn" onclick="appendProjects('Webpages','projects-ul')">Webpages</button>
</div>
<div class="category-flex-item">
<button class="category-btn" onclick="appendProjects('Games', 'projects-ul')">Games</button>
</div>
<div class="category-flex-item">
<button class="category-btn" onclick="appendProjects('Other', 'projects-ul')">Other</button>
</div>
</div>
<div id="projects-container">
<h1 id="projects-header">Projects</h1>
<ul id="projects-ul">
</ul>
</div>
</div>
</section>
<section id="footer-section">
<div id="footer-section-container">
<h4 class="footer-copyright" id="footer-date"></h4>
</div>
</section>
</div>
</body>
<script type="text/javascript" src="/js/stars.js"></script>
<script type="text/javascript" src="/js/projects.js"></script>
<script type="text/javascript" src="/js/date.js"></script>
</html>