-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 2.63 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
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Блок 1.1: Оценка знаний на верстку + Git</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
<script src='main.js'></script>
</head>
<body>
<header>
<img src="img/logo.svg" alt="Логотип iintoo">
</header>
<main>
<h1>Get iintoo it today</h1>
<p>There is no charge or obligation upon registration.</p>
<div class="btns">
<button class="btn btn_fb">Register with Facebook</button>
<button class="btn btn_in">Register with LinkedIn</button>
</div>
<div class="line">or</div>
<div class="form">
<div class="form__item">
<input class="form__field" type="email" value="[email protected]" name="email">
<label class="form__label" for="email">Email</label>
</div>
<div class="form__item">
<input class="form__field" type="tel" name="phone">
<label class="form__label" for="phone">Phone</label>
</div>
</div>
<h2>What type of investor are you?</h2>
<p>Select the type of investor you are bellow.</p>
<div class="main__radio">
<input type="radio" name="type_of_investor" class="radio__field" id="individual">
<label for="individual">Individual</label>
<span class="info"></span>
<input type="radio" name="type_of_investor" class="radio__field" id="business">
<label for="business">Business</label>
<span class="info"></span>
<input type="radio" name="type_of_investor" class="radio__field" id="ira">
<label for="ira">IRA</label>
<span class="info"></span>
<input type="radio" name="type_of_investor" class="radio__field" id="trust">
<label for="trust">Trust</label>
<span class="info"></span>
<div class="tooltip">I am a natural person investing on my own behalf as a sole owner, joint tenant, or tenant in common.</div>
</div>
<input class="main__checkbox" type="checkbox" id="terms">
<label for="terms">
I agree to the terms and receiving notifications from iintoo <a href="#">View full terms</a>
</label>
<button class="btn form__submit" type="submit">Create Account</button>
</main>
</body>
</html>