File size: 2,427 Bytes
5a31b6c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4ed2a19
5a31b6c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4ed2a19
5a31b6c
 
 
4ed2a19
5a31b6c
 
 
 
 
 
 
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Lecture Slide</title>
    <style>
        body {
            font-family: 'Times New Roman', Times, serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .slide {
            width: 100%;
            height: 90%;
            position: relative;
            border: none;
        }
        .header {
            position: absolute;
            top: 10px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            font-size: 18px;
            color: #000000;
        }
        .header-left {
            margin-left: 20px;
        }
        .header-right {
            margin-right: 20px;
        }
        .content {
            position: absolute;
            top: 50%;
            left: 50%;
            text-align: start !important;
            transform: translate(-50%, -50%);
            font-size: 48px;
            line-height: 1.2;
        }
        .content p {
            margin: 10px 0;
            font-size: 24px;
        }
        .footer {
            position: absolute;
            bottom: -30px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            font-size: 18px;
            color: #000000;
        }
        .footer-left {
            margin-left: 20px;
        }
        .footer-right {
            margin-right: 20px;
        }
        hr {
            border: 0;
            border-top: 1px solid #050505;
            margin: 0;
        }
    </style>
</head>
<body>
    <div class="slide">
        <div class="header">
            <div class="header-left">Slide: <!--SLIDE_NUMBER--></div>
            <div class="header-center">section title</div>
            <div class="header-right">Lecture title</div>
        </div>
        <hr style="position: absolute; top: 40px; width: 100%;">
        <div class="content">
            <!--CONTENT-->
        </div>
        <hr style="position: absolute; bottom: 0px; width: 100%;">
        <div class="footer">
            <div class="footer-left">speaker name</div>
            <div class="footer-right">date</div>
        </div>
    </div>
</body>
</html>