-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathindex.html
50 lines (44 loc) · 1.77 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
<!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" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"
integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<link rel="stylesheet" href="/css/style.css" type="text/css" />
<title>Responsive Simple Landing Page - GayanKod</title>
</head>
<body>
<div class="container">
<div class="content-container">
<div class="topic"><b>Illuminated</b></div>
<div class="content">
The illuminated life can happen now, in the moments left. Die to your ego, and become a True Human Being.
</div>
<div class="email-signin">
<input type="text" class="email" placeholder="Email Address" />
<input type="submit" class="signup" value="SignUp" onclick="myFunction()" />
<div id="demo"></div>
</div>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Thank you!";
}
</script>
</div>
<div class="social-container">
<div>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-github"></i>
<i class="far fa-envelope"></i>
</div>
<div class="footer">
<i class="far fa-copyright" style="padding-right:2px;"></i>
GayanKod | Credit Unsplash + HTML5 UP
</div>
</div>
</div>
</body>
</html>