-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shane091490
authored
Mar 3, 2019
1 parent
72f0abc
commit 5f346df
Showing
5 changed files
with
107 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |