-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (117 loc) · 3.61 KB
/
index.html
File metadata and controls
139 lines (117 loc) · 3.61 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="symbol1.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="symbol1.ico" type="image/x-icon"/>
<title>Tushar Takshak</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
</head>
<body>
<!-- navbar -->
<!-- <nav class="navbar navbar-expand-md navbar-dark bg-dark">
<div class="navbar-collapse collapse w-100 order-1 order-md-0 dual-collapse2">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">TUSHAR TAKSHAK</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://drive.google.com/file/d/14wZFoQEjR97u_2pLTw_fCdmP8wPIryOB/view?usp=sharing">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.linkedin.com/in/tushar-takshak-2521061a0/">LinkedIn</a>
</li>
</ul>
</div>
<div class="mx-auto order-0">
<a class="navbar-brand mx-auto" href="http://trixtun.github.io/"><b>プロフィール</b></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".dual-collapse2">
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="navbar-collapse collapse w-100 order-3 dual-collapse2">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="https://github.com/trixtun">Github</a>
</li>
</ul>
</div>
</nav> -->
<!-- Using jumbotron -->
<!-- <div class="jumbotron">
<h3 class="display-4">Hello, world!;</h3>
<p class="lead"></p>
<hr class="my-4">
<div id="container">
<img src="my photo.jpg" alt="Avatar" class="rounded mx-auto d-block" id="image">
<br>
<div id="mid">
<blockquote class="blockquote">
<p class="mb-0" id="text">My Name is Tushar and I develop Web. </p>
</blockquote>
</div>
</div>
</div>
<script src="funk.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html> -->
<html>
<head>
<title>Hiiiiii</title>
<style>
p {
text-align: center;
font-size: 32px;
font-family: Candara, Oswald;
}
img {
display: block;
margin: 0 auto;
width: 25%;
}
</style>
</head>
<body>
<p>Do you love me?</p>
<img src="https://media.tenor.com/u56nhKZD24AAAAAi/catkiss-cat.gif">
</body>
<title>Botões</title>
<style>
#botao1 {
position: fixed;
top: 70%;
left: 55%;
transform: translate(-50%, -50%);
}
#botao2 {
position: absolute;
left: 39%;
top: 68%;
}
</style>
</head>
<body>
<button id="botao1">YES BBY!</button>
<button id="botao2">NO</button>
<script>
const button2 = document.getElementById('botao2');
let left = 40;
button2.addEventListener('mouseover', function() {
if(left == 40){
left = 44;
}else{
left = 40;
}
this.style.left = left + '%';
});
</script>
<script>document.getElementById('botao1').addEventListener('click', function() {
alert('I LOVE YOU TOO 😍❤️');
});
</script>
</body>
</html>