-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 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
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JavaScript</title>
<link rel="stylesheet" href="./assets/style.css" />
</head>
<body>
<div class="container">
<div>
<img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Unofficial_JavaScript_logo_2.svg/1200px-Unofficial_JavaScript_logo_2.svg.png"
alt="JavaScript"
width="100"
style="border-radius: 10px;"
/>
<h1 class="heading">
Learn <span style="color: rgb(233, 225, 79)">JavaScript</span>
</h1>
<button class="btn">View GitHub</button>
</div>
<div>
<img
src="./assets/images/javascriptpic Background Removed.png"
alt="JavaScript"
width="1000"
/>
</div>
</div>
</body>
<script src="./assets/script.js"></script>
</html>