-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindec.html
219 lines (174 loc) · 5.77 KB
/
indec.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Assistant</title>
<link rel="stylesheet" href="./practie.css">
<style>
body{
background-color:brown;
}
</style>
</head>
<body style="background-color:yellow">
<body>
<h1 class="border">Hello BOOTSTRAP World</h1>
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Cupiditate dolor possimus itaque.
<h1 id="two">Arun Yerram</h1>
<h2>PROGRAMMING MERN STACK</h2>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Maxime ex vitae ea.</p>
<ol>
<li>one</li>
<li class="one">two</li>
<li id="two">three</li>
</ol>
</body>
</html> -->
<!--
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Virtual Legal Assistant</title>
<link rel="stylesheet" href="law2.css">
</head>
<body>
<header>
<h1 class="pad">Virtual Legal Assistant</h1>
<nav>
<ul class="menu">
<li class="pad1"><a href="#">Home</a></li>
<li class="pad1"><a href="#">Services</a></li>
<li class="pad1 dropdown">
<a href="#">About Us ▾</a>
<ul class="dropdown-content">
<li><a href="#">Our Team</a></li>
<li><a href="#">Mission & Vision</a></li>
</ul>
</li>
<li class="pad1"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section class="hero">
<h2>Welcome to Our Legal Assistance Platform</h2>
<p class="pad">We're here to help you with your legal needs.</p>
<a href="#" class="cta-button pad1">Get Started</a>
</section>
<section class="services">
<h2>Our Services</h2>
<ul>
<li class="pad1">Legal Consultation</li>
<li class="pad1">Contract Review</li>
<li class="pad1">Legal Research</li>
<li class="pad1">Document Preparation</li>
</ul>
</section>
</main>
<footer>
<p>© 2023 Virtual Legal Assistant</p>
</footer>
</body>
</html> -->
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WEDSITE</title>
<link rel="stylesheet" href="./practie.css">
</head>
<body>
<h1>NYAAY SAHAYAAK</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla fuga eius accusantium modi, ipsam quas magnam consequatur, vel, numquam enim amet hic eum adipisci. Magnam?</p>
<hr>
<div class="box1">Hello</div>
<div class ="box2">Hello</div>
<br> -->
<!-- IN LINE ELEMENT -->
<!-- <span>WORLD</span>
<span>WORLD</span>
<span>WORLD</span>
<hr>
<div class "container">
<div class ="item one">ONE</div>
<div class ="item two">TWO</div>
<div class ="item THREE">THREE</div>
</div>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NYAAY SAHAYAAK</title>
<link rel="stylesheet" href="new.css">
</head>
<body>
<header>
<h1>DIGITAL ASSISSTANT</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div id="search">
<input type="text" id="search-input" placeholder="Search...">
<button id="search-button">Search</button>
</div>
<div id="language-selector">
<label for="language-dropdown">Select Language:</label>
<select id="language-dropdown">
<option value="en">English</option>
<option value="fr">French</option>
<option value="es">Spanish</option>
<option value="es">Telugu</option>
<option value="es">Hindi</option>
<option value="es">Marathi</option>
<!-- Add more language options as needed -->
</select>
</div>
</header>
<main>
<section>
<h2>About Us</h2>
<p>Welcome to our website! </p>
</section>
<section>
<h2>Services</h2>
<ul>
<li>Service 1</li>
<li>Service 2</li>
<li>Service 3</li>
</ul>
</section>
</main>
<footer>
<p>© 2023 Your Website Name</p>
</footer>
<script>
// JavaScript code for search functionality
const searchButton = document.getElementById("search-button");
const searchInput = document.getElementById("search-input");
searchButton.addEventListener("click", function() {
const searchTerm = searchInput.value;
// Implement your search logic here, e.g., redirect to a search results page.
// You can also use AJAX to fetch search results dynamically.
});
// JavaScript code for language selection
const languageDropdown = document.getElementById("language-dropdown");
languageDropdown.addEventListener("change", function() {
const selectedLanguage = languageDropdown.value;
// Implement language switching logic here, e.g., load content in the selected language.
});
</script>
</body>
</html>