-
Notifications
You must be signed in to change notification settings - Fork 1
/
activity-1.html
31 lines (28 loc) · 1.15 KB
/
activity-1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.hcj{
text-align: center;
}
.a{
padding-left: 25%;
}
</style>
</head>
<body>
<div class="a">
<a href="https://www.geeksforgeeks.org/html-tutorial/" target="_blank"><strong>HTML</strong></h2></a><br>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Tutorials" target="_blank"><strong>CSS</strong></a><br>
<a href="https://www.youtube.com/watch?v=W6NZfCO5SIk" target="_blank"><strong>JAVASCRIPT</strong></a>
</div>
<div class="hcj">
<a href="https://www.geeksforgeeks.org/html-tutorial/" target="_blank"><img src="../images/htmllogo.png" title="learn html"></a><br>
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/Tutorials" target="_blank"><img src="../images/csslogo.png" title="learn css"></a><br>
<a href="https://www.youtube.com/watch?v=W6NZfCO5SIk" target="_blank"><img src="../images/jslogo.png" title="learn js" height="150" width="150"></a>
</div>
</body>
</html>