filling in empty spaces in draft text
This commit is contained in:
parent
aee54c2ffc
commit
e95c4cff73
7 changed files with 32 additions and 24 deletions
10
index.html
10
index.html
|
@ -23,13 +23,15 @@
|
|||
</div>
|
||||
|
||||
<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 = "tel:07969696969">07969696969</a>
|
||||
</div>
|
||||
</body>
|
||||
</HTML>
|
|
@ -4,7 +4,11 @@
|
|||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
a, a:visited, a:link{
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id = "title">
|
||||
|
@ -12,13 +16,15 @@
|
|||
<a href = "../index.html">back</a>
|
||||
</div>
|
||||
<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.
|
||||
<br><br>
|
||||
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]
|
||||
I was raised as a musician, its something I've done my whole life and something I'd love to continue to do.
|
||||
|
||||
<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>
|
||||
</body>
|
||||
</HTML>
|
|
@ -22,24 +22,23 @@
|
|||
<div id = "cvHistory">
|
||||
<h3>Education</h3>
|
||||
2014-2019 -
|
||||
Student at fgfdgsfdgfsd<br>
|
||||
8 GCSEs grades 7-5<br><br>
|
||||
Student at South Craven School<br>
|
||||
10 GCSEs grades 7-4<br><br>
|
||||
|
||||
2019-2021 -
|
||||
Student at Ilkley Grammar School<br>
|
||||
3 A-levels<br>
|
||||
Psychology (grade)<br>
|
||||
Politics (grade)<br>
|
||||
Computer Science (grade)<br>
|
||||
Psychology (C)<br>
|
||||
Politics (E)<br>
|
||||
Computer Science (D)<br>
|
||||
|
||||
</div>
|
||||
<div id = "cvSkills">
|
||||
<h3>Skills</h3>
|
||||
<ul>
|
||||
<li>Experience with Logic</li>
|
||||
<li>Experience with x software</li>
|
||||
<li>Partial experience with y software</li>
|
||||
<li>Experience playing x, y, z instruments</li>
|
||||
<li>Experience with Wwise</li>
|
||||
<li>Experience playing piano</li>
|
||||
<li>Basic understanding of programming concepts</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
@ -47,8 +46,7 @@
|
|||
<div id = "cvWork">
|
||||
<h3>Work Experience</h3>
|
||||
<ul>
|
||||
<li>Made music for dnd campaign</li>
|
||||
<li>Will make music for vibleo bame</li>
|
||||
<li>soon to come :)</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -3,7 +3,7 @@ function toggleContact(button)
|
|||
if (button.innerHTML == "contact me")
|
||||
{
|
||||
button.innerHTML = "back"
|
||||
document.getElementById("contactBar").style = "font-size: 1rem;"
|
||||
document.getElementById("contactBar").style = "font-size: 1.5rem;"
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
setTimeout(() => {
|
||||
document.getElementById("title").style = "margin-top: 40vh;"
|
||||
document.getElementById("menu").style = "font-size: 1rem;"
|
||||
document.getElementById("menu").style = "font-size: 1.8rem;"
|
||||
}, 2500);
|
|
@ -3,6 +3,7 @@ html
|
|||
font-family: 'VT323', monospace;
|
||||
background-color: rgb(43, 80, 201);
|
||||
color: rgb(0, 0, 0);
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
body::-webkit-scrollbar
|
||||
|
@ -32,8 +33,8 @@ img
|
|||
|
||||
.imageContainer
|
||||
{
|
||||
width: 25vw;
|
||||
height: 25vw;
|
||||
width: 20vw;
|
||||
height: 20vw;
|
||||
object-fit: contain;
|
||||
margin: auto;
|
||||
border: solid black 5px;
|
||||
|
|
|
@ -16,7 +16,7 @@ h1
|
|||
text-align: center;
|
||||
margin-top: 45vh;
|
||||
margin-bottom: 0;
|
||||
font-size: 4.5rem;
|
||||
font-size: 7rem;
|
||||
|
||||
transition: margin 1s;
|
||||
}
|
||||
|
@ -26,6 +26,7 @@ h2
|
|||
text-align: center;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5vh;
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue