Semester 3 pog
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Trillium Media Design</title>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
body {
|
||||
background-color: #E6E6FA;
|
||||
color: #191970;
|
||||
}
|
||||
h1 {
|
||||
background-color: #191970;
|
||||
color: #E6E6FA;
|
||||
}
|
||||
h2 {
|
||||
background-color: #AEAED4;
|
||||
color: #191970;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Trillium Media Design</h1>
|
||||
</header>
|
||||
<nav><a href="index.html">Home</a>
|
||||
<a href="services.html">Services</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>New Media and Web Design</h2>
|
||||
<p>Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:</p>
|
||||
<ul>
|
||||
<li>Website Design</li>
|
||||
<li>Interactive Animation</li>
|
||||
<li>E-Commerce Solutions</li>
|
||||
<li>Usability Studies</li>
|
||||
<li>Search Engine Optimization</li>
|
||||
</ul>
|
||||
<h2>Meeting Your Business Needs</h2>
|
||||
<p>Our expert designers will listen to you as they create a website that helps to promote and grow your business.</p>
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2023 Caleb Christopher Fontenot
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
|
||||
*/
|
||||
/*
|
||||
Created on : Jan 24, 2023, 8:37:05 AM
|
||||
Author : caleb
|
||||
*/
|
||||
body
|
||||
{
|
||||
background-color: #0099FF;
|
||||
color: #FFFFFF;
|
||||
}
|
@@ -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>External Styles</title>
|
||||
<meta charset="UTF-8">
|
||||
<link rel="stylesheet" href="color.css">
|
||||
</head>
|
||||
<body>
|
||||
<p>This web page uses an external style sheet.</p>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,54 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Trillium Media Design</title>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
body {
|
||||
background-color: #E6E6FA;
|
||||
color: #191970;
|
||||
}
|
||||
h1 {
|
||||
background-color: #191970;
|
||||
color: #E6E6FA;
|
||||
}
|
||||
h2 {
|
||||
background-color: #AEAED4;
|
||||
color: #191970;
|
||||
}
|
||||
.feature
|
||||
{
|
||||
color: #FF0000;
|
||||
}
|
||||
#new
|
||||
{
|
||||
color: #FF00CC;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Trillium Media Design</h1>
|
||||
</header>
|
||||
<nav><a href="index.html">Home</a>
|
||||
<a href="services.html">Services</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>New Media and Web Design</h2>
|
||||
<p>Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:</p>
|
||||
<ul class="feature">
|
||||
<li>Website Design</li>
|
||||
<li>Interactive Animation</li>
|
||||
<li>E-Commerce Solutions</li>
|
||||
<li class="feature">Usability Studies</li>
|
||||
<li class="feature">Search Engine Optimization</li>
|
||||
</ul>
|
||||
<h2>Meeting Your Business Needs</h2>
|
||||
<p id="new">Our expert designers will listen to you as they create a website that helps to promote and grow your business.</p>
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2023 Caleb Christopher Fontenot
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Trillium Media Design</title>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
body
|
||||
{
|
||||
background-color: #E6E6FA;
|
||||
color: #191970;
|
||||
}
|
||||
h1 {
|
||||
background-color: #191970;
|
||||
color: #E6E6FA;
|
||||
}
|
||||
h2 {
|
||||
background-color: #AEAED4;
|
||||
color: #191970;
|
||||
}
|
||||
nav { background-color: #E2E2EF;}
|
||||
footer {color: #666666;}
|
||||
.feature {color: #FF0000;}
|
||||
#new {color: #FF00CC;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Trillium Media Design</h1>
|
||||
</header>
|
||||
<nav><a href="index.html">Home</a>
|
||||
<a href="services.html">Services</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>New Media and Web Design</h2>
|
||||
<p>Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:</p>
|
||||
<ul>
|
||||
<li>Website Design</li>
|
||||
<li>Interactive Animation</li>
|
||||
<li>E-Commerce Solutions</li>
|
||||
<li class="feature"> Usability Studies</li>
|
||||
<li class="feature">Search Engine Optimization</li>
|
||||
</ul>
|
||||
<h2>Meeting Your Business Needs</h2>
|
||||
<p id="new">Our expert designers will listen to you as they create a website that helps to promote and grow your business.</p>
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Trillium Media Design</title>
|
||||
<meta charset="utf-8">
|
||||
<style>
|
||||
body
|
||||
{
|
||||
background-color: #E6E6FA;
|
||||
color: #191970;
|
||||
}
|
||||
h1 {
|
||||
background-color: #191970;
|
||||
color: #E6E6FA;
|
||||
}
|
||||
h2 {
|
||||
background-color: #AEAED4;
|
||||
color: #191970;
|
||||
}
|
||||
nav { background-color: #E2E2EF;}
|
||||
footer {color: #666666;}
|
||||
.companyname {color: #6A6AA7;}
|
||||
.feature {color: #FF0000;}
|
||||
#new {color: #FF00CC;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1 class="companyname">Trillium Media Design</h1>
|
||||
</header>
|
||||
<nav><a href="index.html">Home</a>
|
||||
<a href="services.html">Services</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>New Media and Web Design</h2>
|
||||
<p>Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:</p>
|
||||
<ul>
|
||||
<li>Website Design</li>
|
||||
<li>Interactive Animation</li>
|
||||
<li>E-Commerce Solutions</li>
|
||||
<li class="feature"> Usability Studies</li>
|
||||
<li class="feature">Search Engine Optimization</li>
|
||||
</ul>
|
||||
<h2>Meeting Your Business Needs</h2>
|
||||
<p id="new">Our expert designers will listen to you as they create a website that helps to promote and grow your business.</p>
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,34 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>Trillium Media Design</title>
|
||||
<meta charset="utf-8">
|
||||
<link href="trillium.css" rel="stylesheet">
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1 class="companyname">Trillium Media Design</h1>
|
||||
</header>
|
||||
<nav><a href="index.html">Home</a>
|
||||
<a href="services.html">Services</a>
|
||||
<a href="contact.html">Contact</a>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>New Media and Web Design</h2>
|
||||
<p>Trillium Media Design will bring your company’s Web presence to the next level. We offer a comprehensive range of services:</p>
|
||||
<ul>
|
||||
<li>Website Design</li>
|
||||
<li>Interactive Animation</li>
|
||||
<li>E-Commerce Solutions</li>
|
||||
<li class="feature"> Usability Studies</li>
|
||||
<li class="feature">Search Engine Optimization</li>
|
||||
</ul>
|
||||
<h2>Meeting Your Business Needs</h2>
|
||||
<p id="new">Our expert designers will listen to you as they create a website that helps to promote and grow your business.</p>
|
||||
</main>
|
||||
<footer>
|
||||
Copyright © 2018 Your Name Here
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
@@ -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>
|
@@ -0,0 +1,37 @@
|
||||
/*
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
|
||||
*/
|
||||
/*
|
||||
Created on : Jan 24, 2023, 9:20:27 AM
|
||||
Author : caleb
|
||||
*/
|
||||
|
||||
body
|
||||
{
|
||||
background-color: #E6E6FA;
|
||||
color: #191970;
|
||||
}
|
||||
h1 {
|
||||
background-color: #191970;
|
||||
color: #E6E6FA;
|
||||
}
|
||||
h2 {
|
||||
background-color: #AEAED4;
|
||||
color: #191970;
|
||||
}
|
||||
nav {
|
||||
background-color: #E2E2EF;
|
||||
}
|
||||
footer {
|
||||
color: #666666;
|
||||
}
|
||||
.companyname {
|
||||
color: #6A6AA7;
|
||||
}
|
||||
.feature {
|
||||
color: #FF0000;
|
||||
}
|
||||
#new {
|
||||
color: #FF00CC;
|
||||
}
|
@@ -0,0 +1,21 @@
|
||||
<!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">
|
||||
<link href="site.css" rel="stylesheet">
|
||||
<style>
|
||||
body {color: #0000FF;}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>This paragraph applies the external and embedded styles —
|
||||
note how the blue text color that is configured in the embedded styles takes precedence
|
||||
over the black text color configured in the external stylesheet.</p><!-- comment -->
|
||||
<p style="color: #FF0000">Inline styles configure this paragraph to have red text and take precedence over the embedded and external styles.</p>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
|
||||
*/
|
||||
/*
|
||||
Created on : Jan 24, 2023, 9:28:59 AM
|
||||
Author : caleb
|
||||
*/
|
||||
body {
|
||||
background-color: #FFFFCC;
|
||||
color: #0000FF;
|
||||
}
|
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Other/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 style="backgroundcolor:#F5F5F5;color:#008080">
|
||||
<h1 style="background-color:#008080;color:#F5F5F5;">Inline CSS</h1>
|
||||
<p>This paragraph inherits the styles applied to the body tag.</p>
|
||||
<p style="color:#333333">This paragraph overrides the text color style.</p>
|
||||
</body>
|
||||
</html>
|
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<!--
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
Click nbfs://nbhost/SystemFileSystem/Templates/Other/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 style="backgroundcolor:#F5F5F5;color:#008080">
|
||||
<h1 style="background-color:#008080;color:#F5F5F5;">Inline CSS</h1>
|
||||
<p>This paragraph inherits the styles applied to the body tag.</p>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user