-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 921 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My webpage</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Sohom Dutta Project 0</h1>
<img src="ucsb.png" alt="UCSB Image">
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<h2>My Table</h2>
<table>
<tr>
<th>Column Description 1</th>
<th>Column Description 1</th>
</tr>
<tr>
<td>Row Entry 1</td>
<td>Row Entry 2</td>
</tr>
<tr>
<td>Row Entry 3</td>
<td>Row Entry 4</td>
</tr>
<tr>
<td>Row Entry 5</td>
<td>Row Entry 6</td>
</tr>
</table>
<h2>GitHub Repository Link</h2>
<p><a href="https://github.com/sohomdutta2772/cs291a-project0" target="_blank">View Source Code</a></p>
</body>
</html>