forked from FaridGoldmann/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
33 lines (30 loc) · 669 Bytes
/
Copy pathtest.html
File metadata and controls
33 lines (30 loc) · 669 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.line {
display: flex;
margin: 0 auto;
max-width: 65ch;
}
.intro {
min-width: 45%;
}
.info {
min-width: 55%;
}
</style>
</head>
<body>
<div>
<div class="line">
<p class="intro">Intro</p>
<p class="info">info</p>
</div>
</div>
<script type="text/javascript" src="js/keydown.js"></script>
</body>
</html>