-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticles.html
More file actions
108 lines (107 loc) · 3.53 KB
/
articles.html
File metadata and controls
108 lines (107 loc) · 3.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Welcome</title>
<link rel="stylesheet" href="./style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="./scripts/functionality.js" type="text/javascript"></script>
</head>
<body>
<nav>
<ul>
<li class="links">
<a href="./index.html">
<picture>
<source
media="(min-width:600px) and (max-width: 1100px)"
srcset="./images/resized/react70X70.png"
/>
<source
media=" (max-width: 599px)"
srcset="./images/resized/react40X40.png"
/>
<img
src="./images/react.png"
alt="react-nav-bar"
onmouseover="javascript: inflateImage();"
id="href_image"
onmouseout="javascript: deinflateImage();"
/>
</picture>
</a>
</li>
<li class="links">
<a href="./articles.html">
<h3
onmouseover="javascript: inflate(this.id);"
id="href"
onmouseout="javascript: deinflate(this.id);"
id="href"
>
articles
</h3>
</a>
</li>
<li class="links">
<a href="./resources.html">
<h3
onmouseover="javascript: inflate(this.id);"
id="href2"
onmouseout="javascript: deinflate(this.id);"
>
resources
</h3>
</a>
</li>
<li class="volume_indicator">
<h3>V 1.0.0</h3>
</li>
</ul>
</nav>
<a href="./article.html">
<div class="article_container">
<img
class="article_container_element"
src="./images/react_article_image.jpg"
alt="article-image"
/>
<article class="article_container_element">
<h2>Τι είναι το React</h2>
<p>
Το React είναι μία javaScript βιβλιοθήκη οπου αναπτύχθηκε απο το
faceboook. Χρησιμοποιείται για την ανάπτυξη διεπαφών χρήστη για
ιστοσελίδες.Το κυρίωςπροτέρημα του είναι η δυνατότητα που προσφέρει
στους προγραμματιστές να διαιρούν την ιστοσελίδα σε ανεξάρτητα μέρη
(components) οπου αλληλεπιδρούν μεταξύ τους και μαζι συνθέτουν το
τελικό αποτέλεσμα...
</p>
</article>
</div>
</a>
<footer>
<div class="footer_row">
<ul>
<li><h4>Navigation</h4></li>
<li><a href="./index.html"> home </a></li>
<li><a href="./articles.html"> articles </a></li>
<li><a href="./resources.html"> resources </a></li>
</ul>
</div>
<div class="footer_row">
<ul>
<li><h4>React</h4></li>
<li><a href="https://reactjs.org/"> home </a></li>
<li><a href="https://reactjs.org/docs"> docs </a></li>
<li><a href=".https://reactjs.org/blog"> blog </a></li>
</ul>
</div>
<div class="footer_row">
<h4>
Website made by <br />
Panos Katsos ®
</h4>
</div>
</footer>
</body>
</html>