-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (72 loc) · 2.81 KB
/
index.html
File metadata and controls
72 lines (72 loc) · 2.81 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
</head>
<body>
<h1>Daniel Reed</h1>
<img src="PortfolioProfilePic.jpg" alt="Daniel and Alexia" height=300>
<div>
<img src="https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png" alt="github logo" height=80>
<a href="https://github.com/DanielReed0619" target=_blank>my github</a>
<img src="https://img.flaticon.com/icons/png/512/174/174857.png?size=1200x630f&pad=10,10,10,10&ext=png&bg=FFFFFFFF" alt="linkedin logo" height=70>
<a href="https://www.linkedin.com/in/daniel-reed-2a14b4220/" target=_blank>my linkedin</a>
<img src="https://p.kindpng.com/picc/s/49-498771_envelope-png-mail-icon-vector-white-transparent-png.png" alt="email icon" height=70>
<a href="mailto:reeddaniel0619@gmail.com" target=_blank>my email</a>
</div>
<h2>Technologies</h2>
<table>
<tr>
<th>Front-End</th>
<th>Python</th>
<th>JavaScript</th>
<th>Database</th>
<th>Concepts</th>
</tr>
<tr>
<td>HTML5</td>
<td>Django</td>
<td>Express</td>
<td>MySQL</td>
<td>AJAX</td>
</tr>
<tr>
<td>CSS3</td>
<td>Flask</td>
<td>Mongoose</td>
<td>MangodDB</td>
<td>OOP</td>
</tr>
<tr>
<td>Bootstrap</td>
<td>Unittest</td>
<td>React</td>
<td></td>
<td>REST</td>
</tr>
</table>
<div>
<h2>GitGoin</h2>
<img src="github-logo.png" alt="GitGoin logo" height=150>
</div>
<p>Social Media App for new programmers made in Python - <a href="https://github.com/DanielReed0619" target=_blank>Code</a> | <a href="https://play.google.com/store/apps/details?id=com.facebook.katana&hl=en_US&gl=US" target=_blank>deployed</a></p>
<form action="">
<h2>Contact Me</h2>
<div>
<label>Name: </label>
<input type="text" name="name">
<label>Email: </label>
<input type="text" name="email">
</div>
<br>
<div>
<label>Message</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</div>
<input type="submit" value="Send Message">
</form>
</body>
</html>