diff options
Diffstat (limited to 'src/index.html')
| -rw-r--r-- | src/index.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..0887d8a --- /dev/null +++ b/src/index.html @@ -0,0 +1,73 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Firstname Lastname | Psychology CV</title> + <link rel="stylesheet" href="style.css"> +</head> +<body> + + <header class="container"> + <h1>Firstname Lastname</h1> + <p class="subtitle">Psychology Student / Researcher</p> + </header> + + <main class="container"> + + <section class="card"> + <h2>About</h2> + <p>[Short professional summary placeholder]</p> + </section> + + <section class="card"> + <h2>Education</h2> + <div class="item"> + <h3>University Name</h3> + <span class="date">20XX – 20XX</span> + <p>BSc / MSc in Psychology</p> + </div> + </section> + + <section class="card"> + <h2>Experience</h2> + <div class="item"> + <h3>Role Title</h3> + <span class="date">20XX – Present</span> + <p>[Description]</p> + </div> + </section> + + <section class="card"> + <h2>Research Interests</h2> + <ul> + <li>[Cognitive Psychology]</li> + <li>[Behavioral Neuroscience]</li> + <li>[Mental Health]</li> + </ul> + </section> + + <section class="card"> + <h2>Skills</h2> + <ul class="skills"> + <li>[SPSS]</li> + <li>[Python]</li> + <li>[Data Analysis]</li> + <li>[Writing]</li> + </ul> + </section> + + <section class="card"> + <h2>Contact</h2> + <p>Email: [email@example.com]</p> + <p>LinkedIn: [link]</p> + </section> + + </main> + + <footer class="container"> + <p>© 20XX Firstname Lastname</p> + </footer> + +</body> +</html> |
