Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update msa.html #24

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion 6. HTML+CSS workshop/msa.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,19 @@ <h2>
</h2>
<p>Here is some placeholder text which does some stuff</p>
<h3>This is a List</h3>
<P>I am christy baby</p>
<p contentEditable="true"> i am doing MSA2022</p>
<ul>
<li>
List Item One
</li>
<li>
List Item Two
</li>
<li>
List Item Three
</li>

</ul>
<h3>This is a Table</h3>
<table>
Expand All @@ -27,6 +33,9 @@ <h3>This is a Table</h3>
<th>
Column Two
</th>
<th>
Column Three
</th>
<tr>
<td>
Row One, Column One
Expand All @@ -43,11 +52,19 @@ <h3>This is a Table</h3>
Row Two, Column Two
</td>
</tr>
<tr>
<td>
Row Three, Column One
</td>
<td>
Row Three, Column Two
</td>
</tr>
</table>
</div>
<div>
<button>
Here is a Text Button
</button>
</div>
</body>
</body>