Site Outline #1
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*.css
|
44
css/style.scss
Normal file
44
css/style.scss
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
$background-color: #c7c7c7;
|
||||||
|
$primary-color: #333;
|
||||||
|
$secondary-color: #d11414;
|
||||||
|
$text-color: #123455;
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: sans-serif;
|
||||||
|
background-color: $background-color;
|
||||||
|
header {
|
||||||
|
nav {
|
||||||
|
ul {
|
||||||
|
display: flex;
|
||||||
|
list-style: none;
|
||||||
|
gap: 1em;
|
||||||
|
li {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
&:hover {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
text-align: center;
|
||||||
|
h1 {}
|
||||||
|
|
||||||
|
p {}
|
||||||
|
img {
|
||||||
|
width: 20em;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
// background: #eee;
|
||||||
|
padding: 1em;
|
||||||
|
}
|
||||||
|
}
|
BIN
images/me.jpg
Normal file
BIN
images/me.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 134 KiB |
37
index.html
Normal file
37
index.html
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en-US">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<link rel="stylesheet" href="css/style.css" />
|
||||||
|
<title>David Westgate</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<!-- <header>
|
||||||
|
<nav>
|
||||||
|
<ul>
|
||||||
|
<li>Home</li>
|
||||||
|
<li>Resume</li>
|
||||||
|
<li>Projects + Git</li>
|
||||||
|
<li>Travel</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</header> -->
|
||||||
|
<main>
|
||||||
|
<h1>David Westgate</h1>
|
||||||
|
<div>
|
||||||
|
<img sizes="100em" src="images/me.jpg">
|
||||||
|
</div>
|
||||||
|
<h2>Projects</h2>
|
||||||
|
<h2>Travel</h2>
|
||||||
|
<h2>Games</h2>
|
||||||
|
<h2>Media</h2>
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
<p>2025 David Westgate</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user