aboutsummaryrefslogtreecommitdiff
path: root/src/index.html
blob: 0887d8aaafd2097b817434466036e7af585d4401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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>