-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (85 loc) · 2.53 KB
/
Copy pathindex.html
File metadata and controls
86 lines (85 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Playing with Javascript</title>
<link
href="https://fonts.googleapis.com/css?family=Roboto:400,700|Roboto+Condensed:700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/styles/app.css" />
<script src="assets/scripts/app.js" defer></script>
</head>
<body>
<div id="backdrop"></div>
<header id="main-header">
<h1>Welcome to my webpage!</h1>
</header>
<main>
<section id="about-this-page">
<header><h2>About This Page</h2></header>
<article>
<h2>Purpose?</h2>
<p>
The intial purpose of this page is for practicing javascript and hosting a webpage via docker. So doing popups like
<a href="#" data-text="So doing popups like this" class="info-modal">1</a>
and
<a href="#" data-text="And popups like this" class="info-modal">2</a>
for starters.
</p>
<p>
As well as learning some HTML + formatting.
</p>
<p>
And naturally some .CSS work as well.
</p>
</article>
<article>
<h2>What coming soon?</h2>
<p>
Eventually node.js on the backend.
</p>
<p>
Possibly play with some deployment tools like: Kubernetes or Jenkins
</p>
</article>
<article>
<h2>Current Skillset</h2>
<ul>
<li>Java</li>
<li>C/C++</li>
<li>Azure Devops</li>
<li>C#</li>
<li>MySQL</li>
<li>JUnit</li>
<li>Dungeon Mastering</li>
</ul>
</article>
</section>
<section id="about-tarrayna">
<header><h2>About Tarrayna Smith</h2></header>
<div id="tarrayna-info">
<img
src="assets/images/tarrayna.jpg"
alt="Image of Tarrayna Smith - domain owner"
/>
<ul>
<li><----------------Tarrayna Smith</li>
</ul>
</div>
<p>
Hi! My name is Tarrayna! (Is it mentioned enough?)
</p>
<p>
Here is my
<a href="https://github.com/Tarrayna"> Github account.</a>
</p>
<p>
This webpage is under construction :-)
</p>
</section>
</main>
</body>
</html>