-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
32 lines (31 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mediaquery task</title>
<link rel="stylesheet" media="screen and (max-width: 1440px)" href="style.css">
<link rel="stylesheet" media="screen and (max-width: 375px)" href="mobile.css">
</head>
<body>
<main>
<div class="texts">
<h2>Learn to code by <br> watching others</h2>
<p>See how experienced developers solve problems in real-time. <br>
Watching scripted tutorials is great, but understanding how <br> developers thnk is invaluable </p>
</div>
<div class="forms">
<h4>Try it free 7days <strong class="then">then $20/mo. thereafter</strong></h4>
<form id="field" action="">
<input type="text" id="firstname" value="Jonathan" placeholder="Jonathan" > <br> <br>
<input type="text" id="lastname" value="Last Name" placeholder="Last Name"> <br> <br>
<input type="email" id="email" value="Email Address" placeholder="Email Address"> <br> <br>
<input type="text" id="password" value="Password" placeholder="password"> <br><br>
<button type="submit" id="button">CLAIM YOUR FREE TRIAL</button>
<h6>By clicking the btton you are agreeing to our <strong class="terms"> Terms and Services</strong></h6>
</form>
</div>
</main>
</body>
</html>