Skip to content

Instantly share code, notes, and snippets.

View kccnma's full-sized avatar

KCC New Media Arts kccnma

View GitHub Profile
@kccnma
kccnma / index.html
Created February 11, 2025 19:47
webtest1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Website Test 1</title>
<link rel="stylesheet" href="css/style.css">
</head>
@kccnma
kccnma / sample-html-code.html
Last active November 27, 2023 20:18
sample html code for demo purpoes
<div class="mydiv">
Some text inside of a div
</div>
/* FOR DEV TESTING PURPOSES ONLY */
body *, *:before, *:after {
background-color: rgba(0,0,0,.05) !important;
background-image: none !important;
border: 1px solid rgba(0,0,0,.1) !important;
color: rgba(0,0,0,.05) !important;
}
img, svg, canvas, video, iframe {
filter: grayscale(100%) brightness(0%) opacity(5%) !important;
@kccnma
kccnma / studentsite-johndoe-subpages.css
Created February 4, 2021 01:57
John Doe's Student Site ART 128 Sub Pages CSS
/* GLOBAL RESET */
* { box-sizing: border-box; }
body { margin: 0; }
/* GLOBAL COLORS */
body { color: rgba(0, 0, 0, 0.8); }
a { color: rgba(0, 102, 204, 1); }
a:hover { color: rgba(0, 51, 153, 1); }
/* GLOBAL TYPOGRAPHY */
@kccnma
kccnma / studentsite-johndoe-subpage-notes.html
Last active March 5, 2024 00:03
John Doe's Student Site ART 128 Sub Page HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>John Doe | Notes</title>
<meta name="description"
content="This is an example student website for John Doe, a fictional web design student.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../css/style.css" rel="stylesheet" type="text/css">
@kccnma
kccnma / studentsite-johndoe-subpage-art128.html
Last active March 5, 2024 00:03
John Doe's Student Site ART 128 Sub Page HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>John Doe | ART 128</title>
<meta name="description"
content="This is an example student website for John Doe, a fictional web design student.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="../css/style.css" rel="stylesheet" type="text/css">
@kccnma
kccnma / studentsite-johndoe-structure-homepage.css
Last active February 4, 2021 01:46
John Doe's Student Site Home Page With Structural CSS
/* GLOBAL RESET */
* { box-sizing: border-box; }
body { margin: 0; }
/* GLOBAL COLORS */
body { color: rgba(0, 0, 0, 0.8); }
a { color: rgba(0, 102, 204, 1); }
a:hover { color: rgba(0, 51, 153, 1); }
/* GLOBAL TYPOGRAPHY */
@kccnma
kccnma / studentsite-johndoe-structure-homepage.html
Last active March 5, 2024 00:01
John Doe's Student Site Home Page With Structural HTML
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>John Doe</title>
<meta name="description"
content="This is an example student website for John Doe, a fictional web design student.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet" type="text/css">
@kccnma
kccnma / studentsite-structure-part1.css
Last active February 3, 2021 19:15
Student Site - w/ Structural Styling - Part 1
/* GLOBAL RESET */
* { box-sizing: border-box; }
body { margin: 0; }
/* GLOBAL COLORS */
body { color: rgba(0, 0, 0, 0.8); }
a { color: rgba(0, 102, 204, 1); }
a:hover { color: rgba(0, 51, 153, 1); }
/* GLOBAL TYPOGRAPHY */
@kccnma
kccnma / studentsite-structure-part1.html
Last active March 5, 2024 00:01
Student Site - w/ Structural Markup
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>John Doe</title>
<meta name="description" content="This is an example student website for John Doe, a fictional web design student.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>