-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 2.29 KB
/
index.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.9.0/css/all.min.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/normalize.css">
</head>
<body>
<header class="header container">
<div class="header__wrapper">
<div class="logo"><a href="/">Loans.com</a></div>
<nav class="menu">
<ul>
<li><a href="">Rates & Fees</a></li>
<li><a href="">How to apply</a></li>
<li><a href="">Questions?</a></li>
</ul>
</nav></div>
</header>
<main class="main container">
<div class="intro__info">
<p>Personal Loan</p>
<h1>Put your plans into actions</h1>
<div class="icons">
<div class="icons__item1">Online application</div>
<div class="icons__item2">Up to $50.000</div>
<div class="icons__item3">The money is yours in 48h</div>
</div>
</div>
<div class="intro__form">
<h2>Let's change your life?</h2>
<form action="" class="basicForm" method="">
<label for="name" class="name__lbl">Full name</label>
<input type="text" id="name" class="name__input" placeholder="John Doe">
<label for="email" class="email__lbl">E-mail</label>
<input type="email" id="email" class="email__input" placeholder="[email protected]">
<label for="amount" class="amount__lbl">How much do you need?</label>
<input type="number" id="amount" class="amount__input" placeholder="1000">
<button type="submit" class="check__btn">Check your rates</button>
</form>
</div>
</main>
</div>
</body>
</html>