Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions form.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,18 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Flex form</title>
<title>Registration form</title>
<link rel="stylesheet" href="./style.css">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins"
/>
/> <link rel="icon" type="image/x-icon" href="./img/logo.png" />

</head>
<body>

<header>
<div><button type="submit" class="logo-block" onclick="location='./index.html'">Logotype</button>
<div><button type="submit" class="logo-block" onclick="location='./index.html'"> <img src="./img/logo.png" alt="logotype" class="logo-img" /></button>
</div>
</header>
<div class="content">
Expand All @@ -32,7 +33,7 @@
type="email"
name="email"
placeholder="email"
minlength="9"/>
minlength="11"/>
<label>
<label>
<input
Expand Down
Binary file added img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins"
/>
<link rel="icon" type="image/x-icon" href="./img/logo.png" />
</head>
<body>
<header>
<div>
<button type="submit" class="logo-block" onclick="location='/'">
Logotype
<img src="./img/logo.png" alt="logotype" class="logo-img" />
</button>
</div>
</header>
Expand Down
4 changes: 4 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ header {
justify-content: center;
height: 180px;
}
img {
object-fit: cover;
width: 90px;
}
.logo-block {
width: 90px;
height: 90px;
Expand Down