-
Notifications
You must be signed in to change notification settings - Fork 0
/
Software.html
98 lines (88 loc) · 2.8 KB
/
Software.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
<!DOCTYPE html>
<html lang='en'>
<!--
This is the header. This is where
I define the title for this webpage,
the character set that I am using, and
a small bit of styling to give my webpage
some flair.
-->
<head>
<Title>Software Tools</Title>
<meta charset="UTF-8">
<link rel="stylesheet" href="stylesheet.css">
</head>
<!--
This is the top menu bar for my website background
is common to all of my webpages.
-->
<header>
<h1>Pratt Game Studios</h1>
<ul>
<li><h3><a href="HomePage.html">Home</a></h3></li>
<li><h3><a href="AboutUs.html">About Us</a></h3></li>
<li><h3><a href="FAQ.html">FAQ</a></h3></li>
<li><h3><a href="Careers.html">Careers</a></h3></li>
<li><h3><a href="ContactUs.html">Contact Us</a></h3></li>
</ul>
</header>
<!--
This is the webpage's main body
-->
<main>
<p>
Here's a list of software tools that I like to use:
</p>
<!--
Here's a list of the software tools that I use. Each item in <thead>
list is a link to the tool's website.
-->
<ul>
<li class="li1">
<a href="https://visualstudio.microsoft.com/vs/">Visual Studio 2022</a>
<img src="visualstudio-logo.jpg" alt="Visual Studio logo" style="width:100px;height:100px;">
</li>
<li class="li1">
<a href="https://atom.io/">Atom</a>
<img src="atom-logo.png" alt="Atom logo" style="width:100px;height:100px;">
</li>
<li class="li1">
<a href="https://github.com/">Github</a>
<img src="github-logo.png" alt="Github logo" style="width:100px;height:100px;">
</li>
<li class="li1">
<a href="https://www.microfocus.com/en-us/products/accurev/overview">AccuRev</a>
<img src="accurev-logo.webp" alt="AccuRev logo" style="width:100px;height:100px;">
</li>
<li class="li1">
<a href="https://www.parasoft.com/">Parasoft static analysis</a>
<img src="Parasoft_logo.svg.png" alt="Parasoft logo" style="width:100px;height:100px;">
</li>
<li class="li1">
<a href="https://trello.com/">Trello (for storyboarding)</a>
<img src="Trello_logo.svg.png" alt="Trello logo" style="width:100px;height:100px;">
</li>
</ul>
<p>
Also, check out this video describing all the cool things about Visual Studio 2022:
</p>
<!--
Here's embedded html code from Youtube which I
use to display a Youtube video player onto my webpage.
-->
<iframe width="560" height="315"
src="https://www.youtube.com/embed/f8jXO946eDw"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</main>
<!--
This is my footer section
-->
<footer>
<div id="wrap">
<p> Feel free to email me at [email protected] </p>
</div>
</footer>
</html>