Skip to content

Commit

Permalink
Added inital Web Dev files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane091490 authored Mar 3, 2019
1 parent 72f0abc commit 5f346df
Show file tree
Hide file tree
Showing 5 changed files with 107 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Contact me.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contact me</title>
</head>

<body>
<h3><strong>My Contact Details</strong></h3>
<ul>
<li>Email: <a href="mailto:shanew919@gmail.com" target="_top">shanew919@gmail.com</a></li>
<li>Phone: 972-888-9999</li>
</ul>

<hr>

<form action="mailto:shanew919@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="YourName"><br>
<label>Your Email:</label>
<input type="email" name="YourEmail"><br>
<label>Your Message:</label><br>
<textarea name="YourMessage" rows="8" cols="50"></textarea><br>
<input type="submit" name="">

</form>
</body>

</html>
18 changes: 18 additions & 0 deletions Hobbies.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>My Hobbies</title>
</head>

<body>
<h3>My Hobbies</h3>
<ol>
<li>Scripting</li>
<li>Watch TV</li>
<li>Play Xbox</li>
</ol>
</body>

</html>
Binary file added Images/ProfileImg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added htmlcheatsheet.pdf
Binary file not shown.
60 changes: 60 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en" dir="ltr">

<head>
<meta charset="utf-8">
<title>Shane's Personel Site</title>
</head>

<body>
<img src="images\ProfileImg.jpg" alt="Shane profile pic">
<h1>Shane Boyd Williams</h1>
<p><em>Help Desk Technicial Support at <strong><a href="https://www.northropgrumman.com">Northrop Grumman</a></strong></em></p>
<p>I support computers.</p>
<hr>
<h3>Education</h3>
<ul>
<li>Duncanville High School</li>
<li><a href="https://www.irvingisd.net/nimitz">Nimitz High School</a></li>
<li><a href="https://www.mycomputercareer.edu/">My Computer Career</a></li>
</ul>
<hr>
<h3>Work Experience</h3>
<table cellspacing="10">
<thead>
<tr>
<th>Dates</th>
<th>Work</th>
</tr>
</thead>
<tbod>
<tr>
<td>2010-1013</td>
<td>Help Desk Support</td>
</tr>
<tr>
<td>2010</td>
<td>IT support</td>
</tr>
</tbod>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing="10">
<tr>
<td>PowerShell</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>CLI</td>
<td>⭐⭐</td>
</tr>
</table>
<hr>
<a href="hobbies.html">My Hobbies</a>
<p><a href="Contact me.html">Contact me</a></p>
<br>
<a href="htmlcheatsheet.pdf" download>Download HTML Cheatsheet</a>
</body>

</html>

0 comments on commit 5f346df

Please sign in to comment.