-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguage.html
102 lines (87 loc) · 3.34 KB
/
language.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- ===== CSS ===== -->
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" href="logo.png" type="image/x-icon" />
<!-- ===== Boxicons CSS ===== -->
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<title>SignoSpeak</title>
</head>
<body>
<div class="notification-container" id="notificationContainer"></div>
<nav>
<div class="nav-bar">
<i class="bx bx-menu sidebarOpen"></i>
<div class="logo">
<h2>SignoSpeak</h2>
</div>
<div class="menu">
<div class="logo-toggle">
<span class="logo"><a href="#">SignoSpeak</a></span>
<i class="bx bx-x siderbarClose"></i>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<!-- <li><a href="/Frontend/language.html">Language</a></li> -->
<li><a href="learn.html">Learn</a></li>
<li><a href="try it out.html">Try it Out</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div>
<div class="darkLight-searchBox">
<div class="dark-light">
<i class="bx bx-moon moon"></i>
<i class="bx bx-sun sun"></i>
</div>
</div>
</div>
</nav>
<!-- FOOTER -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>Quick links</h3>
<a href="index.html"> <i class="fas fa-chevron-right"></i> Home </a>
<!-- <a href="/Frontend/language.html">
<i class="fas fa-chevron-right"></i> Language
</a> -->
<a href="learn.html"> <i class="fas fa-chevron-right"></i> Learn </a>
<a href="try it out.html">
<i class="fas fa-chevron-right"></i> Try it Out
</a>
<a href="blog.html"> <i class="fas fa-chevron-right"></i> Blog </a>
</div>
<div class="box">
<h3>Contact info</h3>
<a href="#"> <i class="fa-solid fa-phone-volume"></i> 6302707486 </a>
<a href="#"> <i class="fa-solid fa-phone-volume"></i> 9182736455 </a>
<a href="#">
<i class="fa-solid fa-envelope"></i>[email protected]
</a>
<a href="#"> <i class="fas fa-map-marker-alt"></i> Mumbai, India </a>
</div>
<div class="box">
<h3>Follow us</h3>
<a href="#"> <i class="fab fa-facebook-f"></i> Facebook </a>
<a href="#"> <i class="fab fa-twitter"></i> Twitter </a>
<a href="#"> <i class="fab fa-instagram"></i> Instagram </a>
<a href="#"> <i class="fab fa-pinterest"></i> Pinterest </a>
</div>
</div>
<div class="credit">© 2024 SignoSpeak | All Rights Reserved</div>
</section>
<button id="scrollToTopBtn" title="Go to Top">Top</button>
<script src="script.js"></script>
</body>
</html>