This repository has been archived by the owner on Jan 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vacations.html
168 lines (148 loc) · 5.98 KB
/
vacations.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!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">
<script src="https://kit.fontawesome.com/07e02e8a2b.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/main.css">
<title>Vacations Proj</title>
<script src="js/main.js" defer></script>
</head>
<body>
<a href="work.html" class="see-my-work looping-button"><span></span>
<span></span>
<span></span>
<span></span>
Go back</a>
<a href="about.html" class="see-my-work see-my-work2">about me</a>
<a href="contact.html" class="see-my-work see-my-work3">contact me</a>
<header>
<div class="menu-btn">
<div class="btn-line"></div>
<div class="btn-line"></div>
<div class="btn-line"></div>
</div>
<nav class="menu">
<div class="menu-branding">
<div class="portrait"></div>
</div>
<ul class="menu-nav">
<li class="nav-item ">
<a href="index.html" class="nav-link">
Home
</a>
</li>
<li class="nav-item current">
<a href="about.html" class="nav-link">
About Me
</a>
</li>
<li class="nav-item">
<a href="work.html" class="nav-link">
My Work
</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link">
How To Reach Me
</a>
</li>
</ul>
</nav>
</header>
<main id="about">
<h1 class="lg-heading">
Vacations
<span class="text-secondary"><i class="fas fa-plane"></i></span>
</h1>
<h2 class="sm-heading">
CRUD application Built with React.js Node.js and MySql
</h2>
<div class="about-info">
<img src="img/skills/plane.png" width="250px" height="250px" alt="Dolev Dublon" class="bio-image">
<div class="bio">
<h3 class="text-secondary">About this project</h3>
<p>This poject was made with <span class="text-secondary">React</span> for building the user
interfaces.I improved my understanding of
Front-End programming And also integrated my application to a <span
class="text-secondary">Node</span> server and <span class="text-secondary">MySql</span> database
to
manage the information.
</p>
</div>
</div>
<div>
<a href="https://vacations-dolev.herokuapp.com/" target="https://vacations-dolev.herokuapp.com/"
class="see-my-work preview">Live
</a>
<a href="https://github.com/dolev146/hostingvacationsherokuwithoutmulter"
target="https://github.com/dolev146/hostingvacationsherokuwithoutmulter"
class="see-my-work fix-the-size-bug">see code</a>
</div>
<h1 class="skills-header">Details</h1>
<div class="projects">
<div class="skill item">
<img class="fit-image no-hover-effect" src="./img/skills/react.png" alt="react">
<h3>Front End library</h3>
<p>React is a powerful framework that does more with less. Figuring out how to apply it, however, means
learning both the
core of React and how to integrate it with other technologies and approaches.
</p>
</div>
<div class="skill item">
<img class="fit-image no-hover-effect" src="./img/skills/node.webp" alt="bug logo">
<h3>Node js</h3>
<p>I used node js with <span class="text-secondary">Express.js</span> Building a RestFull Api for
managing requests from the client side.I
used json web tokens for authentication. </p>
</div>
<div class="skill item">
<img class="fit-image no-hover-effect" src="./img/skills/mysql.png" alt="mysql">
<h3>MySql Database</h3>
<p>I used MySql a relational database. I had to learn SQL to Query the database and get the data i need.
Also i needed to Creat the database and understand the relations between the informations </p>
</div>
</div>
</main>
<footer id="main-footer">
<div class="icons">
<a href="www.linkedin.com/in/dolevdublon" target="www.linkedin.com/in/dolevdublon" class="footer-link">
<i class="fab fa-linkedin fa-2x"></i>
</a>
<a href="https://github.com/dolev146" target="https://github.com/dolev146" class="footer-link">
<i class="fab fa-github fa-2x"></i>
</a>
<a href="mailto: [email protected]" class="footer-link">
<i class="fab fas fa-envelope fa-2x"></i>
</a>
<a href="tel:+972505884960" class="footer-link">
<i class="fas fa-phone fa-2x"></i>
</a>
</div>
<div class="footer-nav icons">
<div>
<a href="index.html">
Home
</a>
</div>
<div class="current">
<a href="about.html">
About Me
</a>
</div>
<div>
<a href="work.html">
My Work
</a>
</div>
<div>
<a href="contact.html">
Contact Me
</a>
</div>
</div>
<p>Copytight © 2021</p>
</footer>
</body>
</html>