Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ This is the code for the WUCSC's first Semester Project - our Website!
The Basic things that we want the website to do are:
1. Have a main welcome/home page
2. A top navigation bar
3.... other pages....
3. ... other pages....
4. Links to discord and ig
5. Display weekly posters for club meetings?
- automated??


See the issues tab to see a list of what needs to be done.
Expand Down
75 changes: 75 additions & 0 deletions main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome to WUCSC!</title>
</head>

<body>
<div>
<div>
<h1>Welcom to the Walsh University Computer Science Club home page!</h1>
<image src="./images/Uncle_Brigid.jpg"
<p>There should be some links to SM here...</p>
<p>Maybe a list</p>
</div>

<div>
<ul>
<li>
<a href="https://www.instagram.com/walshcomputerclub/" target="_blank">Instagram</a>
</li>

<li>
<a href="https://discord.gg/6fmsR9N" target="_blank">Discord</a>
</li>
</ul>
</div>

<div>
<table border="1">
<tr>
<th>
Date
</th>

<th>
Meeting
</th>

<th>
Type
</th>
</tr>

<tr>
<td>
3/19/20
</td>

<td>
Yes
</td>

<td>
Discord
</td>
</tr>

<tr>
<td>
3/26/2020
</td>

<td>
Yes?
</td>

<td>
Discord?
</td>
</tr>
</table>
</div>
</div>
</body>
</html>