-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 1001 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home</title>
<link rel="stylesheet" href="css/index.css">
<link rel="shortcut icon" type="image/x-icon" href="https://image.flaticon.com/icons/svg/1042/1042339.svg" />
</head>
<body>
<div id="particles-js">
<div class="btext">
<h1>Image Proccessing Project</h1>
<!-- <p>Live to Code Another Day</p> -->
<a href="image-filter.html" class="btn">Image Editing</a>
<a href="steganography.html" class="btn">steganography</a>
<a href="about.html" class="btn">About</a>
</div>
</div>
<script src="particles.js"></script>
<script>
particlesJS.load('particles-js', 'particles.json',
function(){
console.log('particles.json loaded...')
})
</script>
</body>
</html>