diff options
| author | Dominic Matarese <dominicmatarese@gmail.com> | 2021-08-24 16:36:19 +0000 | 
|---|---|---|
| committer | Dominic Matarese <dominicmatarese@gmail.com> | 2021-08-24 16:36:19 +0000 | 
| commit | eac30b699dd7820eee9656836e1ecaf5a8977e51 (patch) | |
| tree | 6979e6bd2e5c714b19a09d1e37e8319b8e6cf830 /index.html | |
Started writing site, added Resume, Git, Crypto, and Good Software links
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 64 | 
1 files changed, 64 insertions, 0 deletions
| diff --git a/index.html b/index.html new file mode 100644 index 0000000..7d12f16 --- /dev/null +++ b/index.html @@ -0,0 +1,64 @@ +<!doctype html> +<!-- +Copyright (C) 2021 Dominic Matarese + +    This program is free software: you can redistribute it and/or modify +    it under the terms of the GNU General Public License as published by +    the Free Software Foundation, either version 3 of the License, or +    (at your option) any later version. + +    This program is distributed in the hope that it will be useful, +    but WITHOUT ANY WARRANTY; without even the implied warranty of +    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the +    GNU General Public License for more details. + +    You should have received a copy of the GNU General Public License +    along with this program.  If not, see <https://www.gnu.org/licenses/>. +--> +<html> +<head> +	<meta charset="utf-8"/> +	<title>The Dom Dot Com</title> +	<link rel="stylesheet" type="text/css" href="style.css"/> +</head> +<div id="grid"></div> +<div id="container"> +<div id="content"> + +<div id="title"> +	<center>Dominic @ itsthedom.com</center> +	<br> +</div> + +<div id="links"> +	<ul> +		<li> +			<img src="resume.png" width=100px height=100px><br> +			<a href="resume.pdf">Resume</a> +		</li> +		<li> +			<img src="git-logo.png" width=100px height=100px><br> +			<a href="https://git.itsthedom.com/">Git</a> +		</li> + +		<li> +			<img src="bitcoin-logo-png-transparent.png" width=100px height=100px> +			<img src="monero-logo-png-transparent.png" width=100px height=100px> +			<br> +			<a href="">Crypto</a> +		</li> +		<li> +			<img src="resume.png" width=100px height=100px><br> +			<a href="https://itsthedom.com/vouchedSoftware.html">Good Software</a> +		</li> +	</ul> +</div> + +<div id="footer"> +	This website is released under the <a href="https://www.gnu.org/licenses/gpl.txt">GNU GPL v3.0</a> by Dominic Matarese +</div> + +</div> +</div> + +</html> | 
