-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (141 loc) · 5.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!---- bootstrap ---->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!---- css extension---->
<link rel="stylesheet" href="style.css" type="text/css">
<!---- Google Fonts---->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<!---- script ----->
<script src="js.js" defer></script>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/99375eff7b.js" crossorigin="anonymous"></script>
<title>Rav Galicio</title>
</head>
<body>
<!---- navbar start ---->
<nav class="navbar">
<div class="brand-title">
<a href="index.html"><img class="mylogo" src="./image/mybrand.png" alt="Rav logo"></a>
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#bits">Bits</a></li>
<li><a href="#contactme">Contact Me</a></li>
</ul>
</div>
</nav>
<!---- navbar end ---->
<!--- hero image-->
<div class="hero-image">
<div class="hero-container">
<div class="hero-text">
<h1>Hi, I'm Rav.</h1>
<p>I'm an IT Graduate. I love building things from scratch.</p>
<a href="https://drive.google.com/file/d/1CoisTOAsAx2yi1XLH6oHdFIOPv2ZtbC3/view?usp=sharing" target="_blank" width="640" height="480" allow="autoplay">My Resume</a>
</div>
</div>
</div>
<!--- about-->
<div class="about-section" id="about">
<h1>About</h1>
<div class="about-container">
<p>I am a passionate Web Designer. I love learning new things and I also stand for quality. I love spending time on fixing little details and optimizing it. Also, I like working in a team, you'll learn faster, and much more. As the saying goes: "two heads are better than one".</p>
</div>
</div>
<!--bits-->
<div class="skill-bits" id="bits">
<h1>Bits</h1>
<div class="flex-container-bits">
<div class="flex-item">
<a href="https://rabonito.github.io/Ifit-Webpage/" target="_blank">
<img src="./image/ifit.png" alt="mockup design">
<p class="htmltext">Mockup Design</p>
</a>
</div>
<div class="flex-item">
<a href="https://rabonito.github.io/LeilasBoutique/" target="_blank">
<img src="./image/ecommresponsive.png" alt="Leilas Boutique Website Thumbnail">
<p class="htmltext">Ecommerce Responsive Design</p>
</a>
</div>
<div class="flex-item">
<a href="https://rabonito.github.io/coffeegarden/" target="_blank">
<img src="./image/coffeegarden.png" alt="Coffee Garden Responsive Website">
<p class="htmltext">Coffee Shop Responsive Design</p>
</a>
</div>
<div class="flex-item">
<a href="https://rabonito.github.io/portfolio-resume/" target="_blank">
<img src="./image/resume.png" alt="resume">
<p class="htmltext">Simple Resume</p>
</a>
</div>
<div class="flex-item">
<a href="https://www.deviantart.com/rabonito/art/Woman-with-Wolf-Spirit-920627437" target="_blank">
<img src="./image/graphic.png" alt="Wolf Spirit Illustration">
<p class="htmltext">Graphic Arts</p>
</a>
</div>
</div>
</div>
</div>
<!-- Skills-->
<div class="skill-section" id="skills">
<h1>Skills</h1>
<div class="flex-container">
<div class="flex-item">
<img src="./image/html.png" alt="html logo">
<p>HTML</p>
</div>
<div class="flex-item">
<img src="./image/css1.png" alt="css logo">
<p>CSS</p>
</div>
<div class="flex-item">
<img src="./image/js.png" alt="javascript logo">
<p>Javascript</p>
</div>
<div class="flex-item">
<img src="./image/ps.png" alt="photoshop logo">
<p>Photoshop</p>
</div>
</div>
</div>
<!-- Contact Me -->
<div class="footer">
<div class="contact-section" id="contactme">
<h1>CONTACT ME</h1>
<div class="social">
<a href="mailto:[email protected]"><i class="fab fa-google"></i></a>
<a href="https://github.com/Rabonito"><i class="fab fa-github"></i></i></a>
<a href="https://www.linkedin.com/in/joseph-raven-galicio-472b2121a/"><i class="fab fa-linkedin"></i></i></a>
</div>
</div>
</div>
<!---- bootstrap js ---->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>