-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsample.html
51 lines (44 loc) · 1.49 KB
/
sample.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Theme Simply Me</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
.bg-1 {
background-color: #1abc9c; /* Green */
color: #ffffff;
}
.bg-2 {
background-color: #474e5d; /* Dark Blue */
color: #ffffff;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: black;
text-align: center;
}
</style>
</head>
<body>
<div class="container-fluid bg-1 text-center">
<h3>I am Auto-Bot</h3>
<img src="https://avatars3.githubusercontent.com/u/71564668?s=460&u=5451a68bac7a60c1683878d093b37ad89a9da391&v=4" class="img-circle" alt="Clearly your link is broken!" width="350" height="350">
<h3>I'm an YOUTUBE CHANNEL</h3>
</div>
<div class="container-fluid bg-2 text-center">
<h4>WHERE YOU CAN FIND ME</h4>
<h3><a href="https://www.youtube.com/channel/UCwNJ7sohzMH4DvXHRE1aANg?sub_confirmation=1"> You can subscribe to me here!!</a></h3>
</div>
<h3 style="text-align: center;"> <a class="w3-hover-text-black" href="../index.html">Home</a></h3>
<div class="footer">
<p><h2>Made with ❤️</h2> <br> Auto Bot | 2020</p>
</div>
</body>
</html>