-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
152 lines (147 loc) · 5.12 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Home - dev.song</title>
<link
href="https://fonts.googleapis.com/css2?family=Poppins&family=Ubuntu&display=swap"
rel="stylesheet"
/>
<link
type="text/css"
rel="stylesheet"
href="./resources/styles/style.css"
/>
<link
type="text/css"
rel="stylesheet"
href="./resources/styles/style-mobile.css"
/>
</head>
<body>
<header>
<div class="container-header">
<figure class="container-brand"></figure>
<ul class="nav-link">
<li class="link-page">Home</li>
<li class="link-page">About</li>
<li class="link-page">Contact</li>
</ul>
<button type="button" class="button-menu-mobile">
<ion-icon name="ellipsis-horizontal-sharp"></ion-icon>
</button>
</div>
</header>
<main role="main">
<section class="intro">
<div class="container-main-intro">
<figure class="container-intro-image"></figure>
<div class="container-intro">
<h1 class="title-intro">Home of dev.song</h1>
<p class="body-intro">Day by day, another step forward</p>
</div>
</div>
</section>
<section class="projects">
<div class="container-main-projects">
<div class="container-project">
<h3 class="title-project">
<a
href="./projects/digitalRain/digital_rain.html"
class="link-project"
>Digital Rain</a
>
</h3>
<h4 class="subtitle-project">Webpage Template</h4>
<figure class="container-project-image"></figure>
<p class="description-project">
<strong>Digital Rain</strong> is a web app shows the falling green
codes that resembles those from the movie, <i>Matrix</i>.
</p>
</div>
<div class="container-project">
<h3 class="title-project">
<a
href="./projects/cloneWebTemplate/04_Stone/"
class="link-project"
>Stone</a
>
</h3>
<h4 class="subtitle-project">Webpage Template</h4>
<figure class="container-project-image"></figure>
<p class="description-project">
<strong>Stone</strong> is a clone of
<a href="http://template-stone.webflow.io/" class="link-origin"
>Stone</a
>
webpage template from Webflow.
</p>
</div>
<div class="container-project">
<h3 class="title-project">
<a
href="./projects/cloneWebTemplate/03_Biznus/"
class="link-project"
>Brav</a
>
</h3>
<h4 class="subtitle-project">Webpage Template</h4>
<figure class="container-project-image"></figure>
<p class="description-project">
<strong>Brav</strong> is a clone of
<a href="https://biznus-template.webflow.io/" class="link-origin"
>Biznus</a
>
webpage template from Webflow.
</p>
</div>
<div class="container-project">
<h3 class="title-project">
<a
href="https://github.com/dev-song/_home/tree/master/projects/JavaScript30"
class="link-project"
>JavaScript 30</a
>
</h3>
<h4 class="subtitle-project">Tutorial Series</h4>
<figure class="container-project-image"></figure>
<p class="description-project">
Followed JavaScript tutorial by Wes Bos, a full-stack developer
and educator.
</p>
</div>
<div class="container-project">
<h3 class="title-project">
<a
href="https://dev-song.github.io/_home/projects/ToDoVanilla/"
class="link-project"
>ToDo Vanilla</a
>
</h3>
<h4 class="subtitle-project">To-do List</h4>
<figure class="container-project-image"></figure>
<p class="description-project">
<strong>ToDo Vanilla</strong> is a to-do list web app, made with
vanilla JavaScript.
</p>
</div>
</div>
</section>
</main>
<footer>
<div class="container-footer">
<div class="container-contact">
<a href="https://github.com/dev-song" class="link-contact">
<ion-icon name="logo-github"></ion-icon>
</a>
</div>
<button type="button" class="button-contact">Contact Me</button>
</div>
</footer>
<script src="./resources/scripts/scripts.js"></script>
<!-- Ionicons Installation -->
</body>
</html>