-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockup.html
99 lines (91 loc) · 2.72 KB
/
mockup.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
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>
<head>
<title>Profile Mockup</title>
<link rel="stylesheet" type="text/css" href="css/mockup.css">
<script type="text/javascript" src="delete_later/jquery.js"></script>
<script type="text/javascript" src="js/mockup.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="delete_later/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="delete_later/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="delete_later/bootstrap.min.js"></script>
</head>
<body>
<header>
<img class="logo" src="img/logo.png">
<input class="search" type="search" name="search" placeholder="Search" title="Wiki Search [alt-shift-f]">
</header>
<section class="profile center">
<h4>Chuck Palahniuk</h4>
<img src="img/palahniuk.jpg">
<h5>Palahniuk in May 2007</h5>
<table>
<tr>
<th>Born</th>
<td>Charles Michael Palahniuk
<br>
February 21, 1962 (age 53)
<br>
Washington, United States
</td>
</tr>
<tr>
<th>Occupation</th>
<td>novelist, essayist</td>
</tr>
<tr>
<th>Nationality</th>
<td>American</td>
</tr>
</table>
<h5>Website</h5>
<a href="http://chuckpalahniuk.net/">http://chuckpalahniuk.net/</a>
</section>
<aside class="profile_info">
<section class="contents">
<div class="contents_title center">
<h4>Contents</h4>
<span class="toggle">[<a href="#" id="toggle_content">hide</a>]</span>
</div>
<ol id="content_list">
<li><a href="#movies">Movies</a></li>
<li><a href="#books">Books</a></li>
</ol>
</section>
<section class="movies_table">
<div class="movies">
<h4>Movies</h4>
<span class="toggle">[<a href="#" id="toggle_movies">hide</a>]</span>
<span class="toggle">[<a href="#" id="add_movie">add</a>]</span>
<hr>
</div>
<div id="new_moview" class="new_moview">
<input id="m_url"type="url" id="movie_url" placeholder="Movie wiki URL" ><br>
<input id="m_year"type="number" placeholder="Year"><br>
<input id="d_url" type="url" id="director_url" placeholder="Director wiki URL"><br>
<button id="add" type="button" class="btn btn-success">Add</button>
</div>
<table id="m_table"class="table table-striped">
<thead>
<tr>
<th>Movie</th>
<th>Year</th>
<th>Director</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://en.wikipedia.org/wiki/Doodlebug_(film)" target="_blank">Doodlebug</a>
</td>
<td>1997</td>
<td><a href="https://en.wikipedia.org/wiki/Christopher_Nolan" target="_blank">Christopher Nolan</a>
</td>
</tr>
</tbody>
</table>
</section>
</aside>
</body>
</html>