-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (97 loc) · 2.91 KB
/
index.html
File metadata and controls
116 lines (97 loc) · 2.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ep Developer</title>
<meta charset="utf-8" />
<!-- stylesheets -->
<link rel="stylesheet" href="css/bulma.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
</head>
<body>
<!-- navigation -->
<div class="navigation">
<nav class="nav has-shadow">
<div class="container">
<!-- nav site title -->
<div class="nav-left">
<a class="nav-item">
<h3 class="title is-3" style="color: white;"><ERIC PAUL DEVELOPER/></h3>
</a>
</div>
<!-- end of site title -->
<!-- this "nav-toggle" hamburger menu is only visible on mobile -->
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
<!-- end of toggle -->
<!-- this "nav-menu" is hidden on mobile -->
<div class="nav-right nav-menu">
<a class="nav-item is-tab is-active" href="index.html">
Home
</a>
<a class="nav-item is-tab" href="post.html">
Blog
</a>
<a class="nav-item is-tab" href="about.html">
About
</a>
<a class="nav-item is-tab" href="contact.html">
Contact
</a>
<a class="nav-item" href="https://github.com/epaulf">
<span class="icon">
<i class="fa fa-github"></i>
</span>
</a>
</div>
<!-- end of nav -->
</div>
</nav>
</div>
<!-- end navigation -->
<!-- page header (title, etc) -->
<div class="main-header">
<section class="hero is-fullheight">
<div id="particles-js"></div>
<div class="hero-body">
<div id="main" class="has-text-centered">
<!-- header && subheader -->
<h1 class="title is-1 is-spaced"><ERIC PAUL FLORES/></h1>
<h4 class="subtitle is-4">Software Engineer</h4>
<!-- end of header && subheader -->
<!-- header nav content -->
<div class="nav-center">
<a class="nav-item" href="https://github.com/epaulf">
<span class="icon is-large">
<i class="fa fa-github"></i>
</span>
</a>
<a class="nav-item" href="https://twitter.com/Epauldev">
<span class="icon is-large">
<i class="fa fa-twitter"></i>
</span>
</a>
<a class="nav-item" href="https://www.linkedin.com/in/eric-paul-flores-espinoza-624603143/">
<span class="icon is-large">
<i class="fa fa-linkedin"></i>
</span>
</a>
</div>
<!-- end of header nav content -->
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<!-- end page header -->
<script type="text/javascript" src="js/particles.min.js"></script>
<script type="text/javascript" src="js/partitle.js"></script>
</body>
</html>