-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLearning HTML
117 lines (111 loc) · 2.3 KB
/
Learning 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
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
<html lang="en">
<head>
<title>My First Webpage</title>
<link rel="stylesheet" href="styles.css">
<style>
a {
color: blue;
}
a[href="https://facebook.com"] {
color: red;
}
#hi {
border: 3px solid black;
background-color: orange;
width: 200px;
height: 100px;
padding: 25px;
font-family: Arial, san seriff;
font-size: 28px;
font-weight: bold;
}
table {
border: 2px solid black;
border-collapse: collapse;
}
td,
th {
border: 2px solid black;
padding: 5px;
}
ul.good>li {
color: red;
}
button {
width: 200px;
height: 50px;
font-size: 24px;
background-color: lightblue;
}
button:hover {
background-color: orange;
}
@media (min-width: 600px) {
body {
background-color: lightblue;
}
}
</style>
</head>
<body>
<h2 class="header">Learning HTML</h2>
<h2 class="header">By: Rohan.N</h2>
An Unordered List!
<ul>
<li>One Item</li>
<li>Secong Item</li>
<li>Third Item</li>
</ul>
An Ordered List!
<ol>
<li>Rohan</li>
<ul class="good">
<li>Nankani</li>
</ul>
<li>Cristiano</li>
<ul class="good">
<li>Ronaldo</li>
</ul>
<li>Alan</li>
<ul class="good">
<li>Turing</li>
</ul>
</ol>
<img src="https://cdn.britannica.com/47/188747-050-1D34E743/Bill-Gates-2011.jpg" alt="Bill Gates" width="275">
<a href="https://google.com">Click Here</a>
<table>
<thead>
<tr>
<th>Ocean</th>
<th>Average Depth</th>
<th>Maximum Depth</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pacific Ocean</td>
<td>4,280 m</td>
<td>10,911 m</td>
</tr>
<tr>
<td>Atlantic Ocean</td>
<td>3,646 m</td>
<td>8,486 m</td>
</tr>
</tbody>
</table>
<form>
<div id="hi">
<input name="name" type="text" placeholder="Name">
<input name="password" type="password" placeholder="Password">
<input type="submit">
</div>
</form>
<ul>
<li><a href="https://google.com">Google</a></li>
<li><a href="https://facebook.com">Facebook</a></li>
<li><a href="https://amazon.com">Amazon</a></li>
</ul>
<button>Click Me</button>
</body>
</html>