-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (66 loc) · 3.07 KB
/
index.html
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
73
74
75
76
77
78
79
<!DOCTYPE html>
<!-- Author: Nathan Fiscus -->
<!-- Date: 2/27/2019 -->
<html lang="en-US">
<head>
<title>Nathan Fiscus' Web Dev Porfolio</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/index_styles.css" type="text/css" />
</head>
<body>
<div id="header">
<div id="header_text">
<p>Nathan Fiscus' Web Dev Portfolio</p>
</div>
</div>
<div id="avatar">
<img id="avatar" src="./images/20170519_203409868_iOS.jpg" alt="self portrait" height=150 width=120/>
</div>
<div id="content">
<div class="rows">
<div class="row_01" id="alternate1">
<img src="./images/columns.PNG"/>
<p><a href="pages/layout1.html">Flex Columns</a></p>
<p id="desc">This layout displays items as<br />rows from top to bottom.</p>
</div>
<div class="row_01">
<img src="./images/Liquid_layout.PNG"/>
<p><a href="./pages/layout2.html">Liquid Layout</a></p>
<p id="desc">These layouts dynamically resize<br /> themselves to fit the window.</p>
</div>
<div class="row_01">
<img src="./images/row_reverse.PNG"/>
<p><a href="./pages/layout3.html">Row-Reverse</a></p>
<p id="desc">This layout displays the items<br /> in reverse order.</p>
</div>
</div>
<div id="linksTable">
<table style="border: 1px solid #000000" cellspacing="0" width="50%" cellpadding="2" align="center">
<tr class="even">
<th>Description</th>
<th>Link</th>
</tr>
<tr class="odd">
<td>My GitHub repo for this project</td>
<td><a href="https://github.com/nfiscus/Web_Dev_Portfolio">https://github.com/nfiscus/Web_Dev_Portfolio</a></td>
</tr>
<tr class="even">
<td>My CodePen Profile</td>
<td><a href="https://codepen.io/nfiscus/">https://codepen.io/nfiscus/</a></td>
</tr>
<tr class="odd">
<td>W3C Schools Homepage</td>
<td><a href="https://www.w3schools.com/">https://www.w3schools.com/</a></td>
</tr>
<tr class="even" id="bottom_row">
<td>DevDocs API Documentation</td>
<td><a href="https://devdocs.io/">https://devdocs.io/</a></td>
</tr>
</table>
</div>
</div>
<div id="footer">
<p>Developed by Nathan Fiscus - 2/27/2019</p>
</div>
</body>
</html>