-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (33 loc) · 978 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<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>Elemental</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="main" id="main">
<div class="heading">Element.al</div>
<div class="inputArea">
<input
class="elementName"
type="text"
id="elementName"
placeholder="Type any element name.."
/>
<button class="search" id="search">Go</button>
</div>
<div class="helperText">
You can also search by atomic number or symbol.
</div>
<div class="footer">
<a href="https://github.com/delta6626"
><img src="assets/github.svg" alt="Github" class="github"
/></a>
</div>
</div>
</body>
<script src="main.js" type="module"></script>
</html>