-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.html
More file actions
50 lines (47 loc) · 1.14 KB
/
css.html
File metadata and controls
50 lines (47 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<title>First css</title>
</head>
<body>
<button class="subscribe-button">SUBSCRIBE</button>
<h1>ARUN</h1>
<h2>hello</h2>
<h1 class="location">The World is yours</h1>
<table class="my-d" border="1",width="50%" cellpadding="10" cellspacing="15" >
<tr class="heading">
<th>Course</th>
<th>NAME</th>
<th>collage</th>
<th>year</th>
<th>score</th>
</tr>
<tr>
<td>Cse</td>
<td>IIT</td>
<td>ARUN</td>
<td>2022 </td>
<td>99 </td>
</tr>
<tr>
<td>EEE</td>
<td>RANGA</td>
<td>NIT</td>
<td>2022 </td>
<td>90 </td>
</tr>
<tr>
<td>ECE</td>
<td>ARAVIND</td>
<td>PSG</td>
<td>2082 </td>
<td>First</td>
</tr>
</table>
<ul>
<li>topic</li>
</ul>
<p>the First css is using in my life</p>
</body>
</html>