-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (84 loc) · 1.72 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<Title>1st week contest</Title>
<style>
/* Add CSS styles here */
body {
margin: 0;
padding: 0;
}
#blacknav {
/* border: 1px solid black; */
background-color: black;
width: 100%;
height: 25px;
/*padding: auto auto; */
}
#para{
color:white;
padding: auto auto;
}
#butt{
background-color: black;
color: white;
}
#ftblack{
background-color: black;
color: white;
}
</style>
</head>
<body>
<nav id = "blacknav">
<!-- <ul>
<li><a href="#Second Heading">secondheading</a></li>
</ul> -->
<span id = "para">CompanyName.</span>
</nav>
<h1>Project Title</h1>
<p>Placeholder text using the p tag.</p>
<a href="https://www.lipsum.com/" target = "_blank"><button id = "butt">Button</button></a>
<h2>Second Heading</h2>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGkU8K32CZdAyTiGr25d9ZW4bv94A3E5KUog&usqp=CAU" alt="Image not found">
<h3>Ordered List</h3>
<ol>
<li>Pokemon</li>
<li>Tom & Jerry</li>
<li>Bayblade</li>
</ol>
<h3>Unordered List</h3>
<ul>
<li>UAE</li>
<li>LA</li>
<li>Switzerland</li>
</ul>
<table border = "">
<thead>
<tr>
<th>S.No.</th>
<th>Bike</th>
<th>Car</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>R15</td>
<td>Thar</td>
</tr>
<tr>
<td>2</td>
<td>HD-X440</td>
<td>Mustang</td>
</tr>
</tbody>
<tfoot id = "ftblack">
<tr>
<td>3</td>
<td colspan="2">Table footer</td>
</tr>
</tfoot>
</table>
</body>
</html>