-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
116 lines (107 loc) · 5.12 KB
/
about.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
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
<!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>Home</title>
<!-- Link the style.css here.-->
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<nav class="mainNav">
<!-- Upate the href so that each link is working and navigates to the corresponding page. -->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="shop.html">Shopping</a></li>
</ul>
</nav>
<main class="mainBody">
<header id="welcomeMessage">
<h1>About</h1>
<h2>Antonio Cotto</h2>
</header>
<section class="contentSections">
<article class="articles">
<header>
<h1>About Me</h1>
<h2>Antonio Cotto</h2>
<h3>Software Developer</h3>
<!-- Create a hyperlink that opens in a new tab to your GitHub Repository-->
<a href="https://github.com/KrakHub" target="_blank">
<h4>GitHub</h4>
</a>
<!-- Create a hyperlink that sends an email when clicked-->
<a href="mailto:cotto_antonio@student.mahoningctc.com">
<h4>cotto_antonio@student.mahoningctc.com</h4>
</a>
</header>
<p>I hope to learn as many languages as I can by the end of the next two years in order to improve on my
game development skillks. I also want to get into general software development too, and write
programs that I can run to make certain operations like file conversion more streamlined. Languages
I'm interested in learning are python, C#, C++, Javascript, and the Windows command line system.</p>
<!-- Either include a picture of yourself or find a random person from Unsplash.com and include that image as your profile pic in the img src below -->
<figure>
<img
src="https://images.unsplash.com/photo-1504593811423-6dd665756598?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1170&q=80" />
<figcaption>Antonio Cotto</figcaption>
</figure>
<aside>
<p>A talented Software Developer with skills in the following areas:</p>
<ul>
<li>Web Development</li>
<li>HTML, CSS & Javascript</li>
<li>C#</li>
<li>Python</li>
<li>SQL</li>
<li>Desktop Applications</li>
<li>Mobile App Development</li>
</ul>
<!-- Create an undordered list with the following: * Web Development, * HTML, CSS & Javascript, * C#, * Python, * SQL, * Desktop Applications, * Mobile App Development -->
</aside>
</article>
<article class="articles">
<header>
<h1>Favorite Coding Tutorials</h1>
<h2>
C# Tutorial - Full Course for Beginners
</h2>
</header>
<iframe width="560" height="315" src="https://www.youtube.com/embed/GhQdlIFylQ8"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<aside>
<p>
I want to learn this C# is kind of complicated, and the guy looks like he has the brains to do
it.
</p>
</aside>
</article>
<article class="articles">
<header>
<h1>Favorite Coding Tutorials</h1>
<h2>
Learn JavaScript - Full Course for Beginners
</h2>
</header>
<iframe width="560" height="315" src="https://www.youtube.com/embed/PkZNo7MFNFg"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<aside>
<p>
This is the same smart guy from before. I know a little bit of Javascript, but there are some
code structures and methods that don't make much sense to me.
</p>
</aside>
</article>
</section>
</main>
<footer class="mainFooter">
<p>Created by: Antonio Cotto</p>
<a href="mailto:cotto_antonio@student.mahoningctc.com">Email Me</a>
</footer>
</body>
</html>