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
/
cryptonye.html
162 lines (142 loc) · 5.61 KB
/
cryptonye.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
<!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>Cryptonite 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">
Crypto
<span class="text-secondary">nite</span>
</h1>
<h2 class="sm-heading">
tracking virtual currency Built with Vanilla JavaScript
</h2>
<div class="about-info">
<img src="img/skills/bitcoin-logo.png" width="250px" alt="Dolev Dublon" class="bio-image">
<div class="bio">
<h3 class="text-secondary">About this project</h3>
<p>This poject was made with an <span class="text-secondary">Api</span> that send me the data about all
the currencies. My mission was to
display the data in a nice way for the client to help him track his coin. </p>
</div>
</div>
<div>
<a href="https://my-api-coins-proct.glitch.me/" target="https://my-api-coins-proct.glitch.me/"
class="see-my-work preview">Live
</a>
<a href="https://glitch.com/edit/#!/my-api-coins-proct"
target="https://glitch.com/edit/#!/my-api-coins-proct" 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/jslogo.png" alt="">
<h3>Front End languages</h3>
<p>I used javascript to manipulate the DOM , and make this website act like a single page application
without no libraries.
</p>
</div>
<div class="skill item">
<img class="fit-image no-hover-effect" src="./img/skills/bug.png" alt="bug logo">
<h3>Bug solving process</h3>
<p>At the beginning of this project I encountered a lot of bugs whether it was in the design of the site
or whether it was
in JavaScriptFit itself. The process of resolving the bugs was empowering. </p>
</div>
<div class="skill item">
<img class="fit-image no-hover-effect" src="./img/skills/light-bulb.png" alt="">
<h3>Main Lesson</h3>
<p>I contacted the developers of the Chart library i used because it didnt worked in my website and they
gave me a diffrent link to a version that worked on my website.</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>