added broken link warning
This commit is contained in:
10
projects.php
10
projects.php
@@ -1,6 +1,6 @@
|
||||
<!--
|
||||
Yes, I code everything myself.
|
||||
I know HTML, CSS, PHP, and javascript
|
||||
Yes, I code everything myself.
|
||||
I know HTML, CSS, PHP, and javascript
|
||||
I avoid js wherever I can, usually substituting with CSS, but I can work with it.
|
||||
-->
|
||||
|
||||
@@ -8,9 +8,13 @@
|
||||
<html lang=en>
|
||||
<?php include "head.php"; ?>
|
||||
<body>
|
||||
|
||||
|
||||
<?php include "top.php"; ?>
|
||||
|
||||
<div class=notice>
|
||||
<p><span class=attention>Please note:</span> due to recent server migration, many links will be temporarily broken.</p>
|
||||
</div>
|
||||
|
||||
<h2 id=name>PROJECTS</h2>
|
||||
<div class=content>
|
||||
These are my past projects. Some of them were designed to teach me back-end, and some were designed to teach me front-end. These were all learning experiences for me, so while nothing is designed to actually be used in mass (ei, the user interface may be poor), I learned a lot and designed each project to give me practice in a certain topic. Much of what I learned is missing from my earlier sites, since I learned as I created.
|
||||
|
||||
17
style.css
17
style.css
@@ -39,6 +39,23 @@ h1,h2,h3,h4,h5,h6{
|
||||
user-select: none; /* Non-prefixed version, currently
|
||||
supported by Chrome, Opera and Firefox */
|
||||
}
|
||||
.notice{
|
||||
background-color: #00ab4488;
|
||||
border-radius: 1.3em;
|
||||
text-align: center;
|
||||
width: 80%;
|
||||
padding: 0.3em 0.25em;
|
||||
margin: 3em auto;
|
||||
color: var(--txt-color);
|
||||
}
|
||||
.notice>p{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
.attention{
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#moonImg{
|
||||
width: 1em;
|
||||
position: absolute;
|
||||
|
||||
Reference in New Issue
Block a user