forked from jm-program/css-task
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (96 loc) · 5.1 KB
/
index.html
File metadata and controls
99 lines (96 loc) · 5.1 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="./css/styles.css" type="text/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=Barlow:wght@100&display=swap" rel="stylesheet">
</head>
<body>
<div id="main-container">
<div id="image-container" style="background-image: url('img/bg.jpg'); background-size: 100% 100%; background-repeat: no-repeat;">
<img src="img/logo.svg" id="logo" alt="Лого">
</div>
<div id="info-container">
<div id="social-network-container">
<h1>Get iintoo it today</h1>
<p>There is no charge or obligation upon registration.</p>
<div id="networks">
<div id="facebook">
<img src="img/facebook.svg" alt="facebook">
<p>Register with Facebook</p>
</div>
<div id="linkedin">
<img src="img/linkedin.svg" alt="linkedin">
<p>Register with LinkedIn</p>
</div>
</div>
<div id="delimiter">
<p>OR</p>
</div>
</div>
<div id="create-account-container">
<form action="#" method="post">
<div class="input-group">
<div class="input-wrapper">
<label for="email">Email</label>
</div>
<div class="input-wrapper">
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone" pattern="[0-9]*" required>
</div>
</div>
<h2>What type of investor are you?</h2>
<div id="description-selector">Select the type of investor you are below.</div>
<ul class="selector">
<li class="investors-item checked_active">
<label for="individual">
<input checked="" type="radio" id="individual" name="investor">
<span class="wrapper-radio-style"></span>
<span>Individual</span>
</label>
<info class="wrapper-btn-info">i</info>
<p class="wrapper-info-text">I am a natural person investing on my own behalf as a sole owner, joint tenant, or tenant in common</p>
</li>
<li class="investors-item">
<label for="business">
<input type="radio" id="business" name="investor">
<span class="wrapper-radio-style"></span>
<span>Bussiness</span>
</label>
<info class="wrapper-btn-info">i</info>
<p class="wrapper-info-text">I am a natural person investing on my own behalf as a sole owner, joint tenant, or tenant in common</p>
</li>
<li class="investors-item">
<label for="ira">
<input type="radio" id="ira" name="investor">
<span class="wrapper-radio-style"></span>
<span>IRA</span>
</label>
<info class="wrapper-btn-info">i</info>
<p class="wrapper-info-text">I am a natural person investing on my own behalf as a sole owner, joint tenant, or tenant in common</p>
</li>
<li class="investors-item">
<label for="trust">
<input type="radio" id="trust" name="investor">
<span class="wrapper-radio-style"></span>
<span>Trust</span>
</label>
<info class="wrapper-btn-info">i</info>
<p class="wrapper-info-text">I am a natural person investing on my own behalf as a sole owner, joint tenant, or tenant in common</p>
</li>
</ul>
<div id="consent">
<input type="checkbox" id="consent-checkbox" required>
<label for="consent-checkbox">I agree to the terms and receiving notifications from iintoo <a target="_blank" href="#">View full terms</a></label>
</div>
<button type="submit">Create Account</button>
</form>
</div>
</div>
</div>
</body>
</html>