-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (86 loc) · 3.19 KB
/
Copy pathindex.html
File metadata and controls
109 lines (86 loc) · 3.19 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
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header id="main-header-wrap">
<aside id="headerLeftAbv">
</aside>
<aside class="header-right-abv">
</aside>
<h1>DeadPool Fansite</h1>
<nav class="headerNav">
<a href="http://codicamp.org">link1</a>
<a href="http://codicamp.org">link2</a>
<a href="http://codicamp.org">link3</a>
<a href="http://codicamp.org">link4</a>
<a href="http://codicamp.org">link5</a>
<a href="http://codicamp.org">link6</a>
</nav>
<form action="">
<fieldset style="">
<legend>Register</legend>
<!--first-name-->
<label for="first-name">First name: </label>
<input type="text" id="first-name" placeholder="First name" />
<br />
<!--last-name-->
<label for="last-name">Last name: </label>
<input type="text" id="last-name" placeholder="Last name" required/>
<br />
<!--email-->
<label for="email">Enter email: </label>
<input type="email" id="email" placeholder="Enter email" required/>
<br />
<!--email-->
<label for="phone">Enter phone: </label>
<input type="tel" id="phone" placeholder="Enter phone" required/>
<br />
<!--company-name-->
<label for="company-name">Company name: </label>
<input type="text" id="company-name" placeholder="company name" required/>
<br />
<!--first-name-->
<label for="reason">Register reason: </label>
<textarea id="reason" placeholder="First name" col="30" row="10"></textarea>
<br />
</fieldset>
<input type="submit" value="submit" />
</form>
<!--
<form action="">
<input placeholder="" ="user" type="text">
<input placeholder="" ="password" type="text">
<button>log in</button>
<input type="submit">
</form>
-->
</header>
<div>
<img src="https://pbs.twimg.com/media/CVKQTAoUkAAGbhs.jpg" alt="DeadPool">
</div>
<article style="text-align: center;">
<p>
<h2>Some title</h2>
Lorem ipsum dolor sit amet, cu eam commune detracto. No wisi lorem vidisse vel. Accusata vituperata te pro. Debet omnes expetendis et sit, ei utamur repudiandae interpretaris sit, te cibo probo maluisset ius. Cu eum erat nominavi adversarium.
</p>
<p>
<h2>Some title</h2>
Lorem ipsum dolor sit amet, cu eam commune detracto. No wisi lorem vidisse vel. Accusata vituperata te pro. Debet omnes expetendis et sit, ei utamur repudiandae interpretaris sit, te cibo probo maluisset ius. Cu eum erat nominavi adversarium.
</p>
<p>
<h2>Some title</h2>
Lorem ipsum dolor sit amet, cu eam commune detracto. No wisi lorem vidisse vel. Accusata vituperata te pro. Debet omnes expetendis et sit, ei utamur repudiandae interpretaris sit, te cibo probo maluisset ius. Cu eum erat nominavi adversarium.
</p>
</article>
<div>
<img src="http://img10.deviantart.net/09e8/i/2013/344/d/5/lady_deadpool_by_zantyarz-d6xh1ti.png" alt="DeadPool">
</div>
<footer style="text-align: right;">
copywrite 2016
</footer>
</body>
</html>