-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./style/index.css" />
<title>Document</title>
</head>
<body>
<div class="home_page">
<header class="home_header">
<h1 style="text-align: center; padding-bottom:30px; font-size:50px">
Bridge Gap
</h1>
<p class="heading_two">
Translator
</p>
</header>
<section>
<h2 style="font-size: 35px; font-weight: 500;"> How would you like to translate your text</h2>
<div class="home_Container">
<a class="redirect" href="/VoiceTranslater.html">
<div class="Voice_div">
<img
src="./images/voice-9-512.png"
alt="Mike Image"
height="75px"
width="75px"
/>
</div>
<div style="padding: 10px;">
<h2>Record My Voice</h2>
<p style="padding-top: 5px;">Record your voice here on the website</p>
</div>
</a>
<a class="redirect" href="./uploadImage.html">
<div class="upload_div">
<img
src="./images/upload-86-512.png"
alt="upload Image"
height="75px"
width="75px"
/>
</div>
<div style="padding: 10px;">
<h2>Upload My Image</h2>
<p style="padding-top: 5px;">Uplload your own Images</p>
</div>
</a>
</div>
</section>
</div>
</body>
</html>