-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (71 loc) · 3.59 KB
/
index.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
<!DOCTYPE html>
<html lang="en" class="dark-theme">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Your Text</title>
<!-- icon -->
<link rel="icon" href="./photos/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" sizes="192x192" href="./photos/android-chrome-192x192.png">
<link rel="apple-touch-icon" sizes="180x180" href="./photos/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./photos/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./photos/favicon-16x16.png">
<!-- style -->
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div><img class="pales-flag" src="./photos/palestine.png" alt="palestine-flag"></div>
<!-- nav bar -->
<header>
<!-- logo -->
<img class="logo" src="./photos/logo.png" alt="logo">
<nav>
<ul class="nav-links">
<li><a href="./index.html" id="current">coding</a></li>
<li><a href="./decoding.html" target="_blank">decoding</a></li>
<!-- <li><a href="#">about</a></li> -->
<!-- <li><a href="#"></a></li> -->
</ul>
</nav>
<!-- <a href="#" class="cta"><button class="pro-btn">Pro</button></a> -->
<img class="light-btn" src="./photos/light-mode.png" alt="light-mode" title="Light theme">
<img class="dark-btn hidden" src="./photos/dark-mode.png" alt="dark-mode" title="Dark theme">
</header>
<!-- the body -->
<section>
<div class="section">
<h1>CoDing YouR TeXt</h1>
<input type="text" id="input-box" placeholder="Text" title="Enter anything">
<input type="text" id="kay-box" placeholder="Coding kay" title="Enter the kay">
<br>
<button id="coding-btn">coding</button>
<br>
<!-- <input type="text" id="output-box" placeholder="Coding text"> -->
</div>
<p class="output">
Coding text
</p>
</section>
<footer>
<div>
<p>the languages I used:</p>
<img src="./photos/icons8-html-48.png" alt="html" title="HTML">
<img src="./photos/icons8-css-48.png" alt="css" title="CSS">
<img src="./photos/icons8-js-48.png" alt="javascript" title="Javascript">
</div>
<div class="footer">
<p>Social Media:</p>
<a href="https://www.facebook.com/profile.php?id=100089217043030&locale=ar_AR" target="_blank"><img class="footer-icons" src="./photos/icons8-facebook-48.png" alt="facebook" title="Facebook"></a>
<a href="https://twitter.com/Wesam2021ly?t=T7-5R2s8xv2HnPtTTj8pvw&s=09" target="_blank"><img class="footer-icons" src="./photos/icons8-twitterx-48.png" alt="X" title="X-twitter"></a>
<a href="https://t.me/Mr_w_23" target="_blank"><img class="footer-icons" src="./photos/icons8-telegram-app-48.png" alt="telegram" title="Telegram"></a>
<a href="https://ar.quora.com/profile/Wesam-Freeman" target="_blank"><img class="footer-icons" src="./photos/icons8-quora-48.png" alt="quora" title="Quora"></a>
<!-- <a href=""><img src="./photos/facebook(1).png" alt=""></a> -->
</div>
<p>made by © mr.w <span class="date">2023</span></p>
</div>
</footer>
<!-- javascript -->
<script src="./js/app.js"></script>
</body>
</html>