html
html
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
<!-- Created by Helen Calle -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="design.css">
<title>Login Page</title>
<script type="text/javascript" src="script.js" defer></script>
</head>
<body>
<div class="welcoming">
<h2 class="web_name">Together culture</h2>
<div class="circle">
<h1>Welcome<br>Back!</h1>
</div>
</div>
<div class="wrapper">
<form id="form">
<h2>Login</h2>
<div>
<label for="email-input">@</label>
<input type="email" name="email"
id="email-input" placeholder="Email">
Enter to Rename, Shift+Enter to Preview
css
css
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
/* Created by Helen Calle */
/*Where should I put the thinks you said? I tried
putting inside the .welcoming and also as a individual part,
but nothing changes :( maybe any part of my code did wrong?
don't know*/
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
--bg-color: #ffb764;
--title-color: #fff9fa;
--body-text-color: #fffdfd;
--input-color: #de9124;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', 'Lato', sans-serif;
font-size: 12pt;
color: var(--body-text-color);
text-align: center;
}
body {
Enter to Rename, Shift+Enter to Preview
js
js
1
2
3
// Created by Helen Calle
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run