Refactor. JS time!

This commit is contained in:
2023-03-07 13:29:47 -06:00
parent 11d9ecb079
commit c9bb4ba5c5
621 changed files with 780 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<!DOCTYPE html>
<!--
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
-->
<html>
<head>
<title>Trillium Media Design - Contact</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header> <h1>Trillium Media Design</h1> </header>
<nav>
<b>
<a href="index.html"> Home</a>&nbsp;
<a href="services.html"> Services</a>&nbsp;
<a href="contact.html"> Contact</a>&nbsp;
</nav>
<main>
<h2> Contact Trillium Media Design Today</h2><!-- comment -->
<ul>
<li>
E-mail: <a href="mailto:contact@trilliummediadesign.com"> contact@trilliummediadesign.com</a>
</li>
<li>Phone: 555-555-5555</li>
</ul>
</main>
</body>
<footer>
<small><i>Copyright &copy; 2023 Caleb Fontenot </i> </small>
</footer>
</html>

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<!--
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>TODO write content</div>
</body>
</html>

View File

@@ -0,0 +1,37 @@
<!DOCTYPE html>
<!--
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/html.html to edit this template
-->
<html>
<head>
<title>Trillium Media Design - Services</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header> <h1>Trillium Media Design</h1> </header>
<nav>
<b>
<a href="index.html"> Home</a>&nbsp;
<a href="services.html"> Services</a>&nbsp;
<a href="contact.html"> Contact</a>&nbsp;
</nav>
</b>
<main>
<h2>Our Services Meet Your Business Needs</h2>
<dl>
<dt><strong>Website Design</strong></dt>
<dd> Whether your needs are large or small, </dd><!-- comment -->
<dt><strong>E-Commerce Solutions</strong></dt>
<dd> Whether your needs are large or small, </dd>
<dt><strong>Search Engine Optimization</strong></dt>
<dd> Whether your needs are large or small, </dd>
</dl>
</main>
</body>
<footer>
<small><i>Copyright &copy; 2023 Caleb Fontenot </i> </small>
</footer>
</html>