-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
160 lines (158 loc) · 6.02 KB
/
index2.html
File metadata and controls
160 lines (158 loc) · 6.02 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang = "en">
<head>
<title></title>
<meta charset = "utf-8">
<link type="text/css" rel="stylesheet" href="assets\stylesheets\main2.css">
</head>
<body>
<header>
<h1>Styles Conference</h1>
<h3>August is Hot.Summer season</h3>
</header>
<section>
<h2>Dedicated to the Craft of Building Websites</h2>
<p>Every year the brighest web designers and front end developers descend on Chicago to disscuss the latest technologies.</p>
</section>
<section>
<section>
<h5>Speakers</h5>
<h3>World classs Speakers</h3>
<p>Joining us from all around the world are over twenty fantastic speakers,here to share there stories.</p>
</section>
<section>
<p>Unordered list-</p>
<ul>
<li>Orange</li>
<li>Green</li>
<li>Blue</li>
</ul>
<p>Ordered list-</p>
<ol>
<li>North
<ul>
<li>Jammu & Kasmir</li>
<li>Himachal Pradesh</li>
<li>Punjab</li>
</ul>
</li>
<li>South
<ul>
<li>Kerala</li>
<li>Tamil Nadu</li>
</ul>
</li>
<li>East
<ul>
<li>West Bengal</li>
<li>Odisha</li>
<li>Sikkim</li>
</ul>
</li>
<li>West
<ul>
<li>Gujrat</li>
<li>Rajasthan</li>
<li>Maharastra</li>
</ul>
</li>
</ol>
<p>Ordered list start attribute-</p>
<ol start="30">
<li>First</li>
<li>Second</li>
<li>Third</li>
<li>Fourth</li>
</ol>
<p>Ordered list reversed order-</p>
<ol reversed>
<li>North</li>
<li>South</li>
<li>East</li>
<li>West</li>
<li value="33">Home</li>
</ol>
</section>
<section>
<p>Description List</p>
<dl>
<dt>Name</dt>
<dd>Anirban Saha</dd>
<dt>College Name</dt>
<dd>Bengal College of engineering and technology.</dd>
<dt>Department</dt>
<dd>Computer Science.</dd>
</dl>
</section>
<h1>Video</h1>
<video src="assets/Video/Forza5.mp4" width="70%" controls></video><br>
<h1>Audio</h1>
<audio src="assets/Audio/Faded.mp3" width="100" controls></audio><br>
<section>
<a href = "https://youtube.com/" target="_blank"><div class="one"><img src="assets/images/youtube.png" alt="Youtube"></div>></a><br>
<a href = "index.html" target="_blank">Index</a><br>
<a href = "hello.html" target="_blank">Hello</a><br>
</section>
<table>
<caption><h3>Design and Front-End Development</h3></caption>
<thead>
<tr>
<th scope="col">Item</th>
<th scope="col">Avaibility</th>
<th scope="col">Qty</th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>Don’t Make Me Think by Steve Krug</td>
<td>In Stock</td>
<td>1</td>
<td>$30.02</td>
</tr>
<tr>
<td>A Project Guide to UX Design by Russ Unger & Carolyn Chandler</td>
<td>In Stock</td>
<td>2</td>
<td>$52.94 ($26.47 × 2)</td>
</tr>
<tr>
<td>Introducing HTML5 by Bruce Lawson & Remy Sharp</td>
<td>Out of Stock</td>
<td>1</td>
<td>$22.23</td>
</tr>
<tr>
<td>Bulletproof Web Design by Dan Cederholm</td>
<td>In Stock</td>
<td>1</td>
<td>$30.17</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Subtotal</td>
<td>$135.36</td>
</tr>
<tr>
<td colspan="3">Tax</td>
<td>$13.54</td>
</tr>
<tr>
<td colspan="3">Total</td>
<td>$148.90</td>
</tr>
</tfoot>
</table>
<section>
<p>Image testing-</p>
<div class="two">
<img src="assets\images\Fighter-jet.jpg" alt="Battlefield 3 Fighter deck">
</div>
</section>
</section>
<footer>
<small>© Styles Conference</small>
</footer>
</body>
</html>