-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep-1.html
39 lines (33 loc) · 1.47 KB
/
step-1.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
<!DOCTYPE html>
<html lang="fa" dir="rtl" style="font-family: Vazirmatn, Arial, Helvetica, sans-serif;">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reactivity</title>
</head>
<body style="background-color: black;color: white;">
<div style="height:100vh;display: flex;flex-direction: column;justify-content: center;align-items: center;">
<div>
<h1 style="font-size: 2rem;"><b>Reactivity</b> چیه؟</h1>
</div>
<div style="font-size: 1.5rem; margin: 0.5rem 5rem;">
<h6 style="margin-bottom: .5rem;">تعریف رسمی!:</h6>
<p>
In computing, <span style="color: aqua;">reactive programming</span> is a <span
style="color: orange;">declarative programming paradigm</span>
concerned with data streams and the
propagation of change
</p>
<p>
در برنامه نویسی (computing)، برنامه نویسی reactive یک پارادایم برنامه نویسی declarative است که به جریانهای داده
و انتشار تغییرات مربوط میشود.
</p>
</div>
<div style="display: flex;justify-content: center;gap: 2rem; margin-top: 5rem; font-size: 1.25rem;">
<a style="color: gray !important;" href="./index.html">صفحه اول</a>
<a style="color: gray !important;" href="./step-2.html">بعدی</a>
</div>
</div>
<script src="./main.js"></script>
</body>
</html>