filling in empty spaces in draft text

This commit is contained in:
Nye Evans 2022-04-29 17:15:58 +01:00
parent aee54c2ffc
commit e95c4cff73
7 changed files with 32 additions and 24 deletions

View file

@ -23,13 +23,15 @@
</div> </div>
<div id = "contactBar"> <div id = "contactBar">
<a href = "mailto:coolkid@email.com">email me</a> <a href = "mailto:coolkid@email.com" target = "_blank">email me</a>
| |
<a href = "https://twitter.com/atlas_cosmo">twitter</a> <a href = "https://twitter.com/atlas_cosmo" target = "_blank">twitter</a>
|
<a href = "https://soundcloud.com/user-916660931" target = "_blank">soundcloud</a>
|
<a href = "https://www.instagram.com/atlas_cosmos/" target = "_blank">instagram</a>
| |
<a href = "pages/cv.html">cv</a> <a href = "pages/cv.html">cv</a>
|
<a href = "tel:07969696969">07969696969</a>
</div> </div>
</body> </body>
</HTML> </HTML>

View file

@ -4,7 +4,11 @@
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<style>
a, a:visited, a:link{
text-decoration: underline;
}
</style>
</head> </head>
<body> <body>
<div id = "title"> <div id = "title">
@ -12,13 +16,15 @@
<a href = "../index.html">back</a> <a href = "../index.html">back</a>
</div> </div>
<div id = "mainContent"> <div id = "mainContent">
Hi, I'm Cole Waters, the main driving force behind Atlas_Cosmos. Atlas_Cosmos is the collective name for all the work I do as a composer, creating 8-bit electronic Hi, I'm Cosmo, the main driving force behind Atlas_Cosmo. Atlas_Cosmo is the collective name for all the work I do as a composer and sound designer, creating electronic
music for video games. music for video games.
<br><br> I was raised as a musician, its something I've done my whole life and something I'd love to continue to do.
My dad raised me as a musician, its something I've done my whole life and something I'd love to continue to do. [some stuff about your history]
<div class = "imageContainer"><img src = "../images/profile.png"></div> <div class = "imageContainer"><img src = "../images/profile.png"></div>
[stuff about your school/qualifications and experience] I'm proficient in a few different instruments and have been learning the piano since I was 8. I have alot of experience in software such as Logic Pro, Fmod and Wwise. And have worked with other
other people on multiple small projects.
Most of my education comes from a 2 year course I'm currently doing at <a href = "https://www.wakefield.ac.uk/study-with-us/higher-education/" target = "_blank">The University Center at Wakefield college.</a>
</div> </div>
</body> </body>
</HTML> </HTML>

View file

@ -22,24 +22,23 @@
<div id = "cvHistory"> <div id = "cvHistory">
<h3>Education</h3> <h3>Education</h3>
2014-2019 - 2014-2019 -
Student at fgfdgsfdgfsd<br> Student at South Craven School<br>
8 GCSEs grades 7-5<br><br> 10 GCSEs grades 7-4<br><br>
2019-2021 - 2019-2021 -
Student at Ilkley Grammar School<br> Student at Ilkley Grammar School<br>
3 A-levels<br> 3 A-levels<br>
Psychology (grade)<br> Psychology (C)<br>
Politics (grade)<br> Politics (E)<br>
Computer Science (grade)<br> Computer Science (D)<br>
</div> </div>
<div id = "cvSkills"> <div id = "cvSkills">
<h3>Skills</h3> <h3>Skills</h3>
<ul> <ul>
<li>Experience with Logic</li> <li>Experience with Logic</li>
<li>Experience with x software</li> <li>Experience with Wwise</li>
<li>Partial experience with y software</li> <li>Experience playing piano</li>
<li>Experience playing x, y, z instruments</li>
<li>Basic understanding of programming concepts</li> <li>Basic understanding of programming concepts</li>
</ul> </ul>
</div> </div>
@ -47,8 +46,7 @@
<div id = "cvWork"> <div id = "cvWork">
<h3>Work Experience</h3> <h3>Work Experience</h3>
<ul> <ul>
<li>Made music for dnd campaign</li> <li>soon to come :)</li>
<li>Will make music for vibleo bame</li>
</ul> </ul>
</div> </div>
</div> </div>

View file

@ -3,7 +3,7 @@ function toggleContact(button)
if (button.innerHTML == "contact me") if (button.innerHTML == "contact me")
{ {
button.innerHTML = "back" button.innerHTML = "back"
document.getElementById("contactBar").style = "font-size: 1rem;" document.getElementById("contactBar").style = "font-size: 1.5rem;"
} }
else else
{ {

View file

@ -1,4 +1,4 @@
setTimeout(() => { setTimeout(() => {
document.getElementById("title").style = "margin-top: 40vh;" document.getElementById("title").style = "margin-top: 40vh;"
document.getElementById("menu").style = "font-size: 1rem;" document.getElementById("menu").style = "font-size: 1.8rem;"
}, 2500); }, 2500);

View file

@ -3,6 +3,7 @@ html
font-family: 'VT323', monospace; font-family: 'VT323', monospace;
background-color: rgb(43, 80, 201); background-color: rgb(43, 80, 201);
color: rgb(0, 0, 0); color: rgb(0, 0, 0);
font-size: 30px;
} }
body::-webkit-scrollbar body::-webkit-scrollbar
@ -32,8 +33,8 @@ img
.imageContainer .imageContainer
{ {
width: 25vw; width: 20vw;
height: 25vw; height: 20vw;
object-fit: contain; object-fit: contain;
margin: auto; margin: auto;
border: solid black 5px; border: solid black 5px;

View file

@ -16,7 +16,7 @@ h1
text-align: center; text-align: center;
margin-top: 45vh; margin-top: 45vh;
margin-bottom: 0; margin-bottom: 0;
font-size: 4.5rem; font-size: 7rem;
transition: margin 1s; transition: margin 1s;
} }
@ -26,6 +26,7 @@ h2
text-align: center; text-align: center;
margin-top: 0; margin-top: 0;
margin-bottom: 5vh; margin-bottom: 5vh;
font-size: 3rem;
} }