-
Notifications
You must be signed in to change notification settings - Fork 7
/
demo.html
42 lines (33 loc) · 1.25 KB
/
demo.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
<html>
<meta charset="utf-8">
<head>
<style>
.en-ar-span, .ar-en-span{
margin-top: 10px;
display:none;
background: coral;
width: auto;
}
.center{
text-align: center;
}
.didyoumean{
color:blue;
cursor: pointer;
}
</style>
</head>
<body>
<div style="direction:rtl;">
<h4 class = "center">هذا مثال على كود التحويل</h4>
<label class="form-label" for="ar-en">من العربية إلى الإنجليزية</label>
<input class="form-input" type="text" id="ar-en" placeholder="اكتب نصًا بالعربية">
<span class="ar-en-span"></span>
<br><br>
<label class="form-label" for="en-ar">من الإنجليزية إلى العربية</label>
<input class="form-input" type="text" id="en-ar" placeholder="اكتب نصًا بالإنجليزية">
<span class="en-ar-span"></span>
</div>
<script src="Main.js"></script>
</body>
</html>