-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
89 lines (78 loc) · 1.84 KB
/
project.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
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
<html>
<head>
<title> projects</title>
<style>
body{
background:url(b23.jpeg);
background-repeat:no-repeat;
background-size:cover;
}
.project1,.project2,.project3{
margin-left:350px;
}
img{
width:300px;
height:250px;
}
img:hover{
animation-name: round;
animation-duration:10s;
animation-iteration-count:infinite;
}
h4{
color:white;
position:relative;
left:350px;
top:-50px;
font-size:20px;
}
@keyframes round{
from{
transform:rotatex(0deg);
}
to{
transform:rotatex(360deg);
}
}
.navbar{
border:solid;
position:sticky;
top:0%;
border-radius:10px 20px 10px 20px;
background-color:black;
}
.navbar ul li {
list-style-type:none;
display:inline-block;
margin:0px 80px;
}
.navbar ul li a{
color:green;
text-decoration:none;
}
</style>
</head>
<body>
<div class="navbar">
<ul>
<li><a href ="aman.html ">HOME</a></li>
<li><a href ="https://drive.google.com/file/d/1Td36UuzoBo5cYgw5J4UmxiNpJkgQTLxG/view?usp=share_link ">RESUME</a></li>
<li><a href ="project.html">PROJECTS</a></li>
<li><a href ="skills.html">SKILLS</a></li>
<li><a href ="contacts.html ">CONTACT ME</a></li>
</ul>
</div>
<div class ="project1">
<a href="https://github.com/aman3002/speech"><img src="p1.jpeg"></img></a>
</div>
<h4>SPEECH-RESOLVER</h4>
<div class="project2">
<a href="https://github.com/aman3002/moodResolver"><img src="p2.jpeg"></img></a>
</div>
<h4>MOOD-RESOLVER</h4>
<div class="project3">
<a href="https://github.com/aman3002/summarizer"><img src="p3.jpeg"></img></a>
</div>
<h4>SUMMARIZER</h4>
</body>
</html>