-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
133 lines (103 loc) · 2.86 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fascinate&family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" >
<link rel="icon" type="image/x-icon" href="images/html1.jpg">
<title>RS Class 1</title>
</head>
<style>
p {
color: red
}
</style>
<body>
<div class='boxes'>
<div class='box-1'>BOX 1</div>
<div class='box-2'>BOX 2</div>
<div class='box-3'>BOX 3</div>
</div>
<h3 class='country'>BD</h3>
<h3 class='country'>In</h3>
<ul>
<li>Like</li>
<li>Comment</li>
<li>Subscribe</li>
</ul>
<span class="red">I am span</span>
<span class="red">I am span</span>
<h1 Class="box">I am a Box</h1>
<h1 Class="bluecolor">I am h1</h1>
<h2 id="red">I am h2</h2>
<h3 >I am h3</h3>
<h4 >I am h4</h4>
<h5>I am h5</h5>
<h6>I am h6</h6>
<p>hiiii</p>
<ol>
<li>Get Admitted to BracU</li>
<li>Enroll in Tarc</li>
<li>Find Jiboner mane 💑</li>
</ol>
<img src="images/html1.jpg" />
<table>
<thead>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
<th>Heading 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>I am 1</td>
<td>I am 2</td>
<td>I am 3</td>
</tr>
<tr>
<td>I am 2.1</td>
<td>I am 2.2</td>
<td>I am 2.3</td>
</tr>
</tbody>
</table>
<input type="text" /><br />
<input type="email" /><br />
<input type="password" /><br />
<input type="color" /><br />
<input type="image" /><br />
<input type="time" /><br />
<input type="month" /><br />
<input type="file" /><br />
<h1>Fill up this form</h1>
<form>
<label>Enter Username</label><br />
<input type="text" /><br />
<label>Enter Email</label><br />
<input type="email" /><br />
<label>Enter Password</label><br />
<input type="password" /><br />
<label Class='bluecolor'>Tell me about yourself</label><br />
<textarea ></textarea ><br />
<label>Enter Profile Picture</label><br />
<input type="file" /><br />
<label>Select semester</label>
<select>
<option value="1st">1st Semester</option>
<option value="2nd">2nd Semester</option>
<option value="3rd">3rd Semester</option>
</select>
<button>Submitttttt</button>
</form>
<details>
<summary>Click to open </summary>
<p>Hi stranger! I'm the content hidden inside this accordion ;)</p>
</details>
<p style="color: red" >I am Red</p>
</body>
</html>