New site (#3)
* penis * Add COPYRIGHT * Modify Index and Add InProgress * change dropdown title * Change Body Content * Add img style * change pos
This commit is contained in:
parent
9905a76e9f
commit
537e4d41c2
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>In Development</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>This website is in development. Please check back later or contact me if this site had been down for a prolonged period of time.</p>
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 5.1 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
|
@ -1,28 +0,0 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||||
|
||||
<title>Hello, world!</title>
|
||||
<link href="styles.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hello, world!</h1>
|
||||
|
||||
<!-- Optional JavaScript; choose one of the two! -->
|
||||
|
||||
<!-- Option 1: Bootstrap Bundle with Popper -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- Option 2: Separate Popper and Bootstrap JS -->
|
||||
<!--
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js" integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
|
||||
-->
|
||||
</body>
|
||||
</html>
|
76
index.html
76
index.html
|
@ -1,33 +1,57 @@
|
|||
<!DOCTYPE html>
|
||||
<html prefix="og: https://ogp.me/ns#">
|
||||
<head profile="http://www.w3.org/2005/10/profile">
|
||||
<title>Wes Bryie's Site</title>
|
||||
<!-- Made by Wes Bryie in 2021. Designed for wesbryie.cf -->
|
||||
<meta property="og:title" content="Wes Bryie's Site" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<meta charset=“UTF-8”>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Copyright *my code only, not the bootstrap parts* Wesley Bryie, 2021.-->
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="author" content="" />
|
||||
<title>Bare - Start Bootstrap Template</title>
|
||||
<!-- Favicon-->
|
||||
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
|
||||
<!-- Core theme CSS (includes Bootstrap)-->
|
||||
<link href="css/styles.css" rel="stylesheet" />
|
||||
</head>
|
||||
<script src="index.js"></script>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div>
|
||||
<ul>
|
||||
<li><a href="#">Wes Bryie</a></li>
|
||||
<li><a href="quicklinks/index.html">Quick Links</a></li>
|
||||
</ul>
|
||||
<!-- Responsive navbar-->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="#">Wes Bryie</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item"><a class="nav-link active" aria-current="page" href="#">Home</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="InProgress.html">Portfolio</a></li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" id="navbarDropdown" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">Links</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
||||
<li><a class="dropdown-item" href="https://discord.gg/VcnVKX9PHF">BottomBarrel Software Discord</a></li>
|
||||
<li><a class="dropdown-item" href="https://www.github.com/bottombarrel-software">BottomBarrel Software</a></li>
|
||||
<li><hr class="dropdown-divider" /></li>
|
||||
<li><a class="dropdown-item" href="https://www.github.com/wesleybryie">My Github Profile</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div class="row">
|
||||
<div class="column">
|
||||
<h1>I'm Wes!</h1>
|
||||
<img id="bitmoji1" src="bitmoji1.jpeg" alt="My Bitmoji">
|
||||
<p>I am the owner of this site, and I code it! I am a teen who is interesting in technology, coding, and computer science in general! I don't have much time for coding, but when I do code, I'm usually coding this site.</p>
|
||||
</div>
|
||||
<div class="column"></div>
|
||||
<div class="column"></div>
|
||||
</nav>
|
||||
<!-- Page content-->
|
||||
<div class="container">
|
||||
<div class="text-center mt-5">
|
||||
<h1>Welcome to my site!</h1>
|
||||
<style>
|
||||
#bitmoji1 {
|
||||
float: right;
|
||||
}
|
||||
</style>
|
||||
<img id="bitmoji1" src="assets/bitmoji1.jpeg" alt="My Bitmoji">
|
||||
<p class="lead">Hi! My name is Wes, and I am the sole owner and developer of this site.</p>
|
||||
<p>I am a teenager that is interested in technology, and computer science (more so the software development part)!</p>
|
||||
</div>
|
||||
<script src="done.js"></script>
|
||||
</div>
|
||||
<!-- Bootstrap core JS-->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<!-- Core theme JS-->
|
||||
<script src="js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
9
index.js
9
index.js
|
@ -1,9 +0,0 @@
|
|||
// created by Wesley Bryie
|
||||
|
||||
// define creator info
|
||||
var creator = "Wesley Bryie";
|
||||
var domain = "wesbryie.cf"
|
||||
var email = "wesleybryie@protonmail.com"
|
||||
|
||||
// send notice in javascript log / console
|
||||
console.log("Made by: ", creator, " in 2021. This site was designed for ", domain, ". If you happen to find this site on anyother domain not owned by me, please contact me at ", email);
|
Binary file not shown.
Before Width: | Height: | Size: 23 KiB |
|
@ -1,50 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="author" content="" />
|
||||
<title>Bare - Start Bootstrap Template</title>
|
||||
<!-- Favicon-->
|
||||
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
|
||||
<!-- Core theme CSS (includes Bootstrap)-->
|
||||
<link href="css/styles.css" rel="stylesheet" />
|
||||
</head>
|
||||
<body>
|
||||
<!-- Responsive navbar-->
|
||||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="#">Start Bootstrap</a>
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
|
||||
<li class="nav-item"><a class="nav-link active" aria-current="page" href="#">Home</a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#">Link</a></li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" id="navbarDropdown" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">Dropdown</a>
|
||||
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
|
||||
<li><a class="dropdown-item" href="#">Action</a></li>
|
||||
<li><a class="dropdown-item" href="#">Another action</a></li>
|
||||
<li><hr class="dropdown-divider" /></li>
|
||||
<li><a class="dropdown-item" href="#">Something else here</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<!-- Page content-->
|
||||
<div class="container">
|
||||
<div class="text-center mt-5">
|
||||
<h1>A Bootstrap 5 Starter Template</h1>
|
||||
<p class="lead">A complete project boilerplate built with Bootstrap</p>
|
||||
<p>Bootstrap v5.1.3</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Bootstrap core JS-->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<!-- Core theme JS-->
|
||||
<script src="js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -1,25 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Made by Wes Bryie in 2021. Designed for wesbryie.cf -->
|
||||
<link rel="stylesheet" href="../styles.css">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<meta charset=“UTF-8”>
|
||||
<title>My Quick Links</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar">
|
||||
<div>
|
||||
<ul>
|
||||
<li><a href="../index.html">Wes Bryie</a></li>
|
||||
<li><a href="#">Quick Links</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<h1>Would you like some quick with your links?</h1>
|
||||
<h3>Contact me <a href="mailto:wesleybryie@protonmail.com">here.</a></h3>
|
||||
<hr>
|
||||
<p><a href="https://www.google.com/">Google</a>, if you don't know what this site does you need to disconnect and go to the nursing home.</p>
|
||||
</body>
|
||||
</html>
|
58
styles.css
58
styles.css
|
@ -1,58 +0,0 @@
|
|||
/* montserrat-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'Montserrat';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('../fonts/montserrat-v18-latin-regular.eot'); /* IE9 Compat Modes */
|
||||
src: local(''),
|
||||
url('fonts/montserrat.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('fonts/montserrat.woff2') format('woff2'), /* Super Modern Browsers */
|
||||
url('fonts/montserrat.woff') format('woff'), /* Modern Browsers */
|
||||
url('fonts/montserrat.ttf') format('truetype'), /* Safari, Android, iOS */
|
||||
url('fonts/montserrat.svg#Montserrat') format('svg'); /* Legacy iOS */
|
||||
}
|
||||
|
||||
html {
|
||||
font-family: "Montserrat";
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
li {
|
||||
float: left;
|
||||
}
|
||||
|
||||
li a {
|
||||
display: block;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 14px 16px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Change the link color to #111 (black) on hover */
|
||||
li a:hover {
|
||||
background-color: #111;
|
||||
}
|
||||
|
||||
.column {
|
||||
float: left;
|
||||
width: 33.33%;
|
||||
}
|
||||
|
||||
/* Clear floats after the columns */
|
||||
.row:after {
|
||||
content: "";
|
||||
display: table;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#bitmoji1 {
|
||||
float: right;
|
||||
}
|
Loading…
Reference in New Issue