-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaskone.html
More file actions
146 lines (124 loc) · 3.44 KB
/
taskone.html
File metadata and controls
146 lines (124 loc) · 3.44 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
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>task1</title>
</head>
<style>
.nav{
background-color: aliceblue;
}
.nav ul{
overflow: auto;
}
.nav li{
float: left;
list-style: none;
}
.nav li a{
padding: 13px 20px
}
.image{
width: 100%;
height: 50vh;
display: flex;
justify-content: center;
align-items: center;
}
.image img{
height: 150px;
width: 150px;
border-radius: 50%;
/* padding: 50px; */
}
.proj1{
display: flex;
}
.proj2{
display: flex;
}
.myimages{
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
flex-wrap: wrap;
}
.padding{
padding: 20px;
}
.yoo{
display: flex;
justify-content: center;
align-items: center;
}
.text{
position: absolute;
display: none;
cursor: pointer;
transition: opacity 0.6s ease-in-out;
background-color: rgb(155, 154, 153);
width: 100%;
justify-content: centre;
}
.img:hover .text{
display: flex;
}
.img1{
width: 100%;
}
</style>
<body>
<header>
<nav class="nav">
<ul>
<li><a href="#">Work</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<div class="img">
<img class="img1" src="deakin uni.jpeg" alt=" error" width="1000" height="400">
<div class="text">
<h3>Welcome to my website I'm Brahamjot Kaur!</h3>
</div>
</div>
<div class="image">
<img src="yaaa.jpg" alt="no image">
</div>
<div class="abc">
<p style="text-align: center;">
<strong>I am a web developer</strong>
</p>
<hr>
<br>
<p style="text-align: center;"> <strong>Here's what I have done so far</strong></p>
</div>
<div class="proj1">
<img src="project1.jpeg" alt="no image" width="400" height="200">
<p>FACTOR-E is a robot used for industrial purpose which segregates
items according to its colors and transfers them into required it's respective places
which finally delivers items using line following robot.
</p>
</div>
<div class="proj2">
<img src="project2.jpeg" alt="no image" width="350" height="200">
<p>This device provides protection for solar panel during hazardous
conditions like during hailstorm. This device also provides some additional features
like it cleans panel and also provides data about atmosphere for example humidity and
temperature outside.
</p>
</div>
<br>
<div class="yoo">
<p>MY IMAGES</p>
</div>
<div class="myimages">
<img class="padding" src="flower1.jpg" alt=" error" width="200" height="300">
<img class="padding" src="flower2.jpg" alt=" error" width="200" height="300">
<img class="padding" src="flower3.jpg" alt=" error" width="200" height="300">
</div>
</body>
</html>