-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweek_08.html
More file actions
53 lines (43 loc) · 767 Bytes
/
week_08.html
File metadata and controls
53 lines (43 loc) · 767 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
#myHeader{
background-color: lightblue;
color: black;
padding: 40px;
text-align: center;
}
.city {
background-color: tomato;
color: white;
border: 2px solid black;
margin: 20px;
padding: 20px;
}
</style>
<title>
My course page
</title>
</head>
<body>
<h1 id="myHeader"> Welcome to İTÜ </h1>
<h2 class="city"> Welcome to İTÜ MAT-MÜH</h2>
<p> This a full paragraph</p>
My closest friends:
<ul>
<li> Ayse</li>
<li> Fatma</li>
</ul>
<p> This a <b>most important</b>
<i>italic</i>
full paragraph.
</p>
<a href="http://kutuphane.itu.edu.tr/"> Visit ITU library</a>
3 < 5 and 5 > 4
4 & 5
<p>
<img src='logo/rvest.jpg' width="400" height="400">
</p>
</body>
</html>