-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (102 loc) · 2.63 KB
/
Copy pathindex.html
File metadata and controls
122 lines (102 loc) · 2.63 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index</title>
<link rel="stylesheet" href="styles_index.css">
</head>
<body>
<main>
<img src="me.jpg" alt="An image of Ryan James" class="profile">
<img src="witw.jpg" alt="A rundown car and building" class="mood" height="250" width="400">
<table>
<!-- Titlebar and UI -->
<tr class="color">
<th class="size">
<div class="interface"></div>
</th>
<th>
<nav>
<a href="index.html">Index</a>
<a href="file.html">File</a>
<a href="https://rjamesdailey.com">Documents</a>
<a href="reui.png">Help</a>
</nav>
</th>
<th class="size">
<div class="interface"></div>
</th>
</tr>
<!-- Begin Screen -->
<tr>
<!-- <td colspan="2">
<p class="warning">UNDER CONSTRUCTION UNDER CONSTRUCTION UNDER CONSTRUCTION</p>
</td>--><td colspan="2"></td>
<td id="tableaccent" rowspan="4">
</td>
</tr>
<tr><td colspan="2">
<header>
<h1>Ryan James</h1>
</header>
<h2>Resume</h2>
<section>
<h3>Culinary Experience</h3>
<p>
Chef / Manager
</p>
<ul>
<li>Menu Development</li>
<li>Inventory and Labor Managment</li>
</ul>
</section>
<section>
<h3>Fiction & Writing</h3>
<p>
Manuscripts:
</p>
<ul>
<li>Recutlikine - Fantasty</li>
<li>Space Junk - Science Fiction</li>
<li>At the Bottom - Science Fiction</li>
<li>The Nobodies - Horror</li>
</ul>
</section>
<section>
<h3>Certifications</h3>
<p>
<ul>
<li>A+</li>
<li>Security+</li>
<li>Network+</li>
<li>AWS Cloud Practitioner</li>
<li>ITIL</li>
</p>
</section>
</td>
<tr>
<td colspan="2">
<article>
<p>I am an experienced chef and restaurant manager with <em>a background in leading high-volume, guest-focused operations</em>, now expanding my skill set into IT and cloud computing. I write speculative fiction across multiple generes and bring creativity and discipline to all aspects of my life.</p>
</article>
<section>
<hr>
<table class="summary">
<tr bgcolor="#C5A7CB">
<td>
<div id="currentDate"></div>
</td>
</tr>
</table>
</center>
</main>
<script>
const dateDiv = document.getElementById("currentDate");
const today = new Date();
dateDiv.textContent = today.toDateString();
console.log("Date populated successfully.");
</script>
</body>
</html>