Advertisement
what3ver

charpage hh

Aug 19th, 2019
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 73.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <title>{Title}</title> <!--- AUTOMATICALLY SHOWS YOUR BLOG TITLE. IF YOU WISH TO HAVE SOMETHING DIFFERENT, TAKE OUT {Title} AND REPLACE IT WITH YOUR DESIRED PAGE TITLE. --->
  6. <link rel="shortcut icon" href="{Favicon}"/>
  7. <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
  8.  
  9. <link href="https://fonts.googleapis.com/css?family=ABeeZee|Biryani|Comfortaa|Karla|M+PLUS+Rounded+1c|Quicksand|Ubuntu|Varela+Round" rel="stylesheet">
  10.  
  11. <link href="https://fonts.googleapis.com/css?family=Raleway:400" rel="stylesheet">
  12. <script src="//code.jquery.com/jquery-2.2.4.min.js"></script>
  13.  
  14. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  15.  
  16. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  17.  
  18. <link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
  19.  
  20. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
  21.  
  22. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  23.  
  24. <script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
  25.  
  26. <script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
  27. <script type="text/javascript" charset="utf-8">$(document).ready(function(){
  28. var $grid = $("#contain_mason").masonry({
  29. itemSelector: ".main_entry",
  30. initLayout: 1
  31. });
  32. $grid.on("layoutComplete", function(o, r) {
  33. console.log(r.length)
  34. }), $grid.masonry({
  35. fitWidth: 1,
  36. horizontalOrder: 1,
  37. gutter: 0,
  38. resize: 1
  39. }), $grid.imagesLoaded().progress(function() {
  40. $grid.masonry("layout")
  41. });
  42. });</script>
  43.  
  44. <link href="//dl.dropbox.com/s/vpi3f9s7nhpe7v7/honeybee.css" rel="stylesheet">
  45.  
  46. <script>
  47. (function($){
  48. $(document).ready(function(){
  49. $("[title]").style_my_tooltips({
  50. tip_follows_cursor:true,
  51. tip_delay_time:90,
  52. tip_fade_speed:600,
  53. attribute:"title"
  54. });
  55. });
  56. })(jQuery);
  57. </script>
  58.  
  59. <script>
  60. $(document).ready(function() {
  61. //
  62. $('a.poplight[href^=#]').click(function() {
  63. var popID = $(this).attr('rel');
  64. var popURL = $(this).attr('href');
  65. var query= popURL.split('?');
  66. var dim= query[1].split('&');
  67. var popWidth = dim[0].split('=')[1];
  68. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  69. var popMargTop = ($('#' + popID).height() + 0) / 2;
  70. var popMargLeft = ($('#' + popID).width() + 0) / 2;
  71. $('#' + popID).css({
  72. 'margin-top' : -popMargTop,
  73. 'margin-left' : -popMargLeft
  74. });
  75. $('body').append('<div id="fade"></div>');
  76. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn();
  77. return false;
  78. });
  79. $('a.close, #fade').live('click', function() {
  80. $('#fade , .popup_block').fadeOut(function() {
  81. $('#fade, a.close').remove();
  82. });
  83. return false;
  84. });
  85. });
  86. </script>
  87.  
  88. <style type="text/css">
  89.  
  90. body {
  91. background-color:#e7e7e7;
  92. color:#5a5a5a;
  93. font-family:'ABeeZee';
  94. /* pre-loaded fonts that are used in my themes are below if you wish to change it! */
  95. font-size:10px;
  96. line-height:16px;
  97. letter-spacing:.25px; /* change to zero for no letter spacing */
  98. }
  99.  
  100. a {
  101. text-decoration:none;
  102. color:#c10000;
  103. }
  104.  
  105. a:hover {
  106. color:#b0933b;
  107. }
  108.  
  109. b,strong {
  110. color:#c10000;
  111. }
  112.  
  113. i,em {
  114. color:#b0933b;
  115. }
  116.  
  117. ::-webkit-scrollbar {
  118. width: 5px;
  119. background: #f3f3f3;
  120. }
  121.  
  122. ::-webkit-scrollbar-track {
  123. background:#f8f8f8;
  124. }
  125.  
  126. ::-webkit-scrollbar-thumb {
  127. background-color:#c7c7c7;
  128. }
  129.  
  130.  
  131. #s-m-t-tooltip { /* TOOLTIPS AKA TITLES FOUND WHEN HOVERING */
  132. background-color:#f8f8f8;
  133. color:#b0933b;
  134. font-weight:bold;
  135. text-transform:uppercase;
  136. font-size:8px;
  137. letter-spacing:2px;
  138. padding:10px 15px 10px 15px;
  139. margin:20px 0px 0px 20px;
  140. z-index:9999999999999999999999;
  141. border:1px solid #e7e7e7;
  142. }
  143.  
  144. #contain {
  145. width:870px;
  146. margin:100px auto;
  147. padding-bottom:50px;
  148. text-align:center;
  149. }
  150.  
  151. #contain_mason {
  152. text-align:center;
  153. width:805px;
  154. }
  155.  
  156. .main_entry {
  157. margin-right:15px;
  158. margin-bottom:20px;
  159. border-radius:6px;
  160. float:left;
  161. width:200px;
  162. background-color:#fbfbfb;
  163. border:1px solid #e7e7e7;
  164. }
  165.  
  166. .muse {
  167. background:#f3f3f3;
  168. height:25px;
  169. padding:25px;
  170. border-radius:5px;
  171. font-family:'Abril Fatface', cursive;
  172. font-size:20px;
  173. text-align:center;
  174. color:#c10000;
  175. -webkit-text-stroke: .8px #c10000;
  176. -webkit-text-fill-color: rgba(0, 0, 0, 0);
  177. font-weight:300;
  178. text-shadow:2px -2px #c7c7c7;
  179. z-index:999999;
  180. }
  181.  
  182. .muse_etc {
  183. display:inline;
  184. text-transform:uppercase;
  185. font-family:'ABeeZee';
  186. color:#b0933b;
  187. font-weight:bold;
  188. font-size:8px;
  189. text-align:center;
  190. margin: 5px 5px;
  191. font-style:italic;
  192. background-color:#fff;
  193. }
  194.  
  195. .muse_etc:before{
  196. content:'\f101';
  197. font-family:'FontAwesome';
  198. color:#c10000;
  199. font-size:8px;
  200. margin-right:3px;
  201. }
  202.  
  203. .muse_navigation {
  204. display:block;
  205. width:200px;
  206. padding-bottom:20px;
  207. background:#f5f5f5;
  208. }
  209.  
  210. .muse_navigation a {
  211. display:inline-block;
  212. line-height:15px;
  213. margin-top:15px;
  214. text-align:center;
  215. font-family:'Abril Fatface', cursive;
  216. font-size:15px;
  217. font-weight:bold;
  218. color:#b0933b;
  219. -webkit-transition: -webkit-transform .8s ease-in-out;
  220. transition: .8s ease-in-out;
  221. text-shadow:2px -2px #c7c7c7;
  222. letter-spacing:1.5px;
  223. }
  224.  
  225. .muse_navigation a:hover {
  226. -webkit-text-stroke: .8px #c10000;
  227. -webkit-text-fill-color: rgba(0, 0, 0, 0);
  228. font-weight:300;
  229. text-shadow:2px -2px #c7c7c7;
  230. }
  231.  
  232. .muse_navigation1 {
  233. display:block;
  234. width:200px;
  235. padding-bottom:20px;
  236. background:#f5f5f5;
  237. }
  238.  
  239. .muse_navigation1 a {
  240. display:inline-block;
  241. line-height:15px;
  242. margin-top:15px;
  243. text-align:center;
  244. font-family:'Abril Fatface', cursive;
  245. font-size:15px;
  246. font-weight:bold;
  247. color:#c10000;
  248. -webkit-transition: -webkit-transform .8s ease-in-out;
  249. transition: .8s ease-in-out;
  250. text-shadow:2px -2px #c7c7c7;
  251. letter-spacing:1.5px;
  252. }
  253.  
  254. .muse_navigation1 a:hover {
  255. -webkit-text-stroke: .8px #b0933b;
  256. -webkit-text-fill-color: rgba(0, 0, 0, 0);
  257. font-weight:300;
  258. text-shadow:2px -2px #c7c7c7;
  259. }
  260.  
  261. .info {
  262. padding:5px;
  263. display:inline-block;
  264. height:70px;
  265. width:190px;
  266. overflow:auto;
  267. text-align:justify;
  268. float:right;
  269. background-color:#f0f0f0;
  270. }
  271.  
  272. .photo {
  273. width:250px;
  274. height:150px;
  275. display:block;
  276. }
  277.  
  278. .photo img {
  279. width:200px;
  280. height:150px;
  281. display:block;
  282. }
  283.  
  284. #bottom {
  285. bottom:-1px;
  286. left:-1px;
  287. right:-1px;
  288. position:fixed;
  289. display:block;
  290. text-align:center;
  291. font-size:11px;
  292. letter-spacing:1px;
  293. text-transform:uppercase;
  294. font-weight:bold;
  295. border-top:;
  296. color:#c10000;
  297. padding:15px;
  298. height:35px;
  299. line-height:35px;
  300. background-color:#fbfbfb;
  301. border:1px solid #e7e7e7;
  302. }
  303.  
  304. #bottom_navigation {
  305. margin-top:5px;
  306. margin-left:10px;
  307. float:left;
  308. font-size:16px;
  309. color:#c10000;
  310. display:inline-block;
  311. }
  312.  
  313. #bottom_navigation a {
  314. color:#c10000;
  315. margin-right:15px;
  316. }
  317.  
  318. #bottom_credit {
  319. margin-top:5px;
  320. float:right;
  321. font-size:16px;
  322. color:#c7c7c7;
  323. display:inline-block;
  324. }
  325.  
  326. #bottom_credit a {
  327. color:#c7c7c7;
  328. margin-right:15px;
  329. }
  330.  
  331.  
  332.  
  333. </style>
  334. </head>
  335.  
  336. <body>
  337.  
  338. <div id="contain">
  339. <div id="contain_mason">
  340.  
  341. <!---------- START OF MUSES CONTAIN ---------->
  342.  
  343. <!--- START OF MUSE --->
  344.  
  345. <div class="main_entry">
  346. <div class="muse">Aaron Janosh</div> <!--- muse name --->
  347. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  348.  
  349.  
  350. <div class="photo"><img src="https://i.imgur.com/bwrGlAj.png"></div> <!--- replace with the url for your photo --->
  351.  
  352. <div class="info">
  353. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  354. </div>
  355.  
  356. <div class="muse_navigation">
  357.  
  358. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  359. </div>
  360.  
  361. </div>
  362.  
  363. <!--- END OF MUSE --->
  364.  
  365. <!--- START OF MUSE --->
  366.  
  367. <div class="main_entry">
  368. <div class="muse">Alanna Blevins</div> <!--- muse name --->
  369. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  370.  
  371.  
  372. <div class="photo"><img src="https://i.imgur.com/Q5S4uhs.png"></div> <!--- replace with the url for your photo --->
  373.  
  374. <div class="info">
  375. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  376. </div>
  377.  
  378. <div class="muse_navigation1">
  379.  
  380. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  381. </div>
  382.  
  383. </div>
  384.  
  385. <!--- END OF MUSE --->
  386.  
  387. <!--- START OF MUSE --->
  388.  
  389. <div class="main_entry">
  390. <div class="muse">Ajay Hills</div> <!--- muse name --->
  391. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  392.  
  393.  
  394. <div class="photo"><img src="https://i.imgur.com/DXe1PrS.png"></div> <!--- replace with the url for your photo --->
  395.  
  396. <div class="info">
  397. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  398. </div>
  399.  
  400. <div class="muse_navigation">
  401.  
  402. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  403. </div>
  404.  
  405. </div>
  406.  
  407. <!--- END OF MUSE --->
  408.  
  409. <!--- START OF MUSE --->
  410.  
  411. <div class="main_entry">
  412. <div class="muse">Alexandra Bakker</div> <!--- muse name --->
  413. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  414.  
  415.  
  416. <div class="photo"><img src="https://i.imgur.com/n88b0YZ.png"></div> <!--- replace with the url for your photo --->
  417.  
  418. <div class="info">
  419. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  420. </div>
  421.  
  422. <div class="muse_navigation1">
  423.  
  424. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  425. </div>
  426.  
  427. </div>
  428.  
  429. <!--- END OF MUSE --->
  430.  
  431. <!--- START OF MUSE --->
  432.  
  433. <div class="main_entry">
  434. <div class="muse">Alycia Dicksen</div> <!--- muse name --->
  435. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  436.  
  437.  
  438. <div class="photo"><img src="https://i.imgur.com/xs3GVU1.png"></div> <!--- replace with the url for your photo --->
  439.  
  440. <div class="info">
  441. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  442. </div>
  443.  
  444. <div class="muse_navigation">
  445.  
  446. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  447. </div>
  448.  
  449. </div>
  450.  
  451. <!--- END OF MUSE --->
  452.  
  453. <!--- START OF MUSE --->
  454.  
  455. <div class="main_entry">
  456. <div class="muse">Alessa Nakamura</div> <!--- muse name --->
  457. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  458.  
  459.  
  460. <div class="photo"><img src="https://i.imgur.com/dgYvyKz.png"></div> <!--- replace with the url for your photo --->
  461.  
  462. <div class="info">
  463. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  464. </div>
  465.  
  466. <div class="muse_navigation1">
  467.  
  468. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  469. </div>
  470.  
  471. </div>
  472.  
  473. <!--- END OF MUSE --->
  474.  
  475. <!--- START OF MUSE --->
  476.  
  477. <div class="main_entry">
  478. <div class="muse">Ana Valentina</div> <!--- muse name --->
  479. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  480.  
  481.  
  482. <div class="photo"><img src="https://i.imgur.com/PKcrP8Q.png"></div> <!--- replace with the url for your photo --->
  483.  
  484. <div class="info">
  485. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  486. </div>
  487.  
  488. <div class="muse_navigation">
  489.  
  490. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  491. </div>
  492.  
  493. </div>
  494.  
  495. <!--- END OF MUSE --->
  496.  
  497. <!--- START OF MUSE --->
  498.  
  499. <div class="main_entry">
  500. <div class="muse">Amber Moon</div> <!--- muse name --->
  501. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  502.  
  503.  
  504. <div class="photo"><img src="https://i.imgur.com/xMGkrW2.png"></div> <!--- replace with the url for your photo --->
  505.  
  506. <div class="info">
  507. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  508. </div>
  509.  
  510. <div class="muse_navigation1">
  511.  
  512. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  513. </div>
  514.  
  515. </div>
  516.  
  517. <!--- END OF MUSE --->
  518.  
  519. <!--- START OF MUSE --->
  520.  
  521. <div class="main_entry">
  522. <div class="muse">Annelise Bae</div> <!--- muse name --->
  523. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  524.  
  525.  
  526. <div class="photo"><img src="https://i.imgur.com/wX2voxX.png"></div> <!--- replace with the url for your photo --->
  527.  
  528. <div class="info">
  529. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  530. </div>
  531.  
  532. <div class="muse_navigation">
  533.  
  534. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  535. </div>
  536.  
  537. </div>
  538.  
  539. <!--- END OF MUSE --->
  540.  
  541. <!--- START OF MUSE --->
  542.  
  543. <div class="main_entry">
  544. <div class="muse">Artur Johnson</div> <!--- muse name --->
  545. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  546.  
  547.  
  548. <div class="photo"><img src="https://i.imgur.com/yC5DLw9.png"></div> <!--- replace with the url for your photo --->
  549.  
  550. <div class="info">
  551. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  552. </div>
  553.  
  554. <div class="muse_navigation1">
  555.  
  556. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  557. </div>
  558.  
  559. </div>
  560.  
  561. <!--- END OF MUSE --->
  562.  
  563. <!--- START OF MUSE --->
  564.  
  565. <div class="main_entry">
  566. <div class="muse">Antonio Davis</div> <!--- muse name --->
  567. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  568.  
  569.  
  570. <div class="photo"><img src="https://i.imgur.com/3lCWEdz.png"></div> <!--- replace with the url for your photo --->
  571.  
  572. <div class="info">
  573. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  574. </div>
  575.  
  576. <div class="muse_navigation">
  577.  
  578. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  579. </div>
  580.  
  581. </div>
  582.  
  583. <!--- END OF MUSE --->
  584.  
  585. <!--- START OF MUSE --->
  586.  
  587. <div class="main_entry">
  588. <div class="muse">Ayla Osman</div> <!--- muse name --->
  589. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  590.  
  591.  
  592. <div class="photo"><img src="https://i.imgur.com/3QgsMXH.png"></div> <!--- replace with the url for your photo --->
  593.  
  594. <div class="info">
  595. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  596. </div>
  597.  
  598. <div class="muse_navigation1">
  599.  
  600. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  601. </div>
  602.  
  603. </div>
  604.  
  605. <!--- END OF MUSE --->
  606.  
  607. <!--- START OF MUSE --->
  608.  
  609. <div class="main_entry">
  610. <div class="muse">Aurora Osen</div> <!--- muse name --->
  611. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  612.  
  613.  
  614. <div class="photo"><img src="https://i.imgur.com/HQmr463.png"></div> <!--- replace with the url for your photo --->
  615.  
  616. <div class="info">
  617. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  618. </div>
  619.  
  620. <div class="muse_navigation">
  621.  
  622. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  623. </div>
  624.  
  625. </div>
  626.  
  627. <!--- END OF MUSE --->
  628.  
  629. <!--- START OF MUSE --->
  630.  
  631. <div class="main_entry">
  632. <div class="muse">Belchior Mackie</div> <!--- muse name --->
  633. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  634.  
  635.  
  636. <div class="photo"><img src="https://i.imgur.com/uQmTgvp.png"></div> <!--- replace with the url for your photo --->
  637.  
  638. <div class="info">
  639. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  640. </div>
  641.  
  642. <div class="muse_navigation1">
  643.  
  644. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  645. </div>
  646.  
  647. </div>
  648.  
  649. <!--- END OF MUSE --->
  650.  
  651. <!--- START OF MUSE --->
  652.  
  653. <div class="main_entry">
  654. <div class="muse">Benjamin Everett</div> <!--- muse name --->
  655. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  656.  
  657.  
  658. <div class="photo"><img src="https://i.imgur.com/89PTubr.png"></div> <!--- replace with the url for your photo --->
  659.  
  660. <div class="info">
  661. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  662. </div>
  663.  
  664. <div class="muse_navigation">
  665.  
  666. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  667. </div>
  668.  
  669. </div>
  670.  
  671. <!--- END OF MUSE --->
  672.  
  673. <!--- START OF MUSE --->
  674.  
  675. <div class="main_entry">
  676. <div class="muse">Benjamin Howard</div> <!--- muse name --->
  677. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  678.  
  679.  
  680. <div class="photo"><img src="https://i.imgur.com/SJmelbM.png"></div> <!--- replace with the url for your photo --->
  681.  
  682. <div class="info">
  683. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  684. </div>
  685.  
  686. <div class="muse_navigation1">
  687.  
  688. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  689. </div>
  690.  
  691. </div>
  692.  
  693. <!--- END OF MUSE --->
  694.  
  695. <!--- START OF MUSE --->
  696.  
  697. <div class="main_entry">
  698. <div class="muse">Billie Jean</div> <!--- muse name --->
  699. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  700.  
  701.  
  702. <div class="photo"><img src="https://i.imgur.com/y8ylWon.png"></div> <!--- replace with the url for your photo --->
  703.  
  704. <div class="info">
  705. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  706. </div>
  707.  
  708. <div class="muse_navigation">
  709.  
  710. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  711. </div>
  712.  
  713. </div>
  714.  
  715. <!--- END OF MUSE --->
  716.  
  717. <!--- START OF MUSE --->
  718.  
  719. <div class="main_entry">
  720. <div class="muse">Cassandra Johnson</div> <!--- muse name --->
  721. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  722.  
  723.  
  724. <div class="photo"><img src="https://i.imgur.com/yZF2tNd.png"></div> <!--- replace with the url for your photo --->
  725.  
  726. <div class="info">
  727. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  728. </div>
  729.  
  730. <div class="muse_navigation1">
  731.  
  732. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  733. </div>
  734.  
  735. </div>
  736.  
  737. <!--- END OF MUSE --->
  738.  
  739. <!--- START OF MUSE --->
  740.  
  741. <div class="main_entry">
  742. <div class="muse">Bowie Morris</div> <!--- muse name --->
  743. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  744.  
  745.  
  746. <div class="photo"><img src="https://i.imgur.com/9QuXdzU.png"></div> <!--- replace with the url for your photo --->
  747.  
  748. <div class="info">
  749. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  750. </div>
  751.  
  752. <div class="muse_navigation">
  753.  
  754. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  755. </div>
  756.  
  757. </div>
  758.  
  759. <!--- END OF MUSE --->
  760.  
  761. <!--- START OF MUSE --->
  762.  
  763. <div class="main_entry">
  764. <div class="muse">Charlotte Barnes</div> <!--- muse name --->
  765. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  766.  
  767.  
  768. <div class="photo"><img src="https://i.imgur.com/oF6K9u7.png"></div> <!--- replace with the url for your photo --->
  769.  
  770. <div class="info">
  771. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  772. </div>
  773.  
  774. <div class="muse_navigation1">
  775.  
  776. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  777. </div>
  778.  
  779. </div>
  780.  
  781. <!--- END OF MUSE --->
  782.  
  783. <!--- START OF MUSE --->
  784.  
  785. <div class="main_entry">
  786. <div class="muse">Connie McAdams</div> <!--- muse name --->
  787. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  788.  
  789.  
  790. <div class="photo"><img src="https://i.imgur.com/xcsfHsL.png"></div> <!--- replace with the url for your photo --->
  791.  
  792. <div class="info">
  793. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  794. </div>
  795.  
  796. <div class="muse_navigation">
  797.  
  798. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  799. </div>
  800.  
  801. </div>
  802.  
  803. <!--- END OF MUSE --->
  804.  
  805. <!--- START OF MUSE --->
  806.  
  807. <div class="main_entry">
  808. <div class="muse">Chloe Jones</div> <!--- muse name --->
  809. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  810.  
  811.  
  812. <div class="photo"><img src="https://i.imgur.com/vtuUYHJ.png"></div> <!--- replace with the url for your photo --->
  813.  
  814. <div class="info">
  815. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  816. </div>
  817.  
  818. <div class="muse_navigation1">
  819.  
  820. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  821. </div>
  822.  
  823. </div>
  824.  
  825. <!--- END OF MUSE --->
  826.  
  827. <!--- START OF MUSE --->
  828.  
  829. <div class="main_entry">
  830. <div class="muse">Deacon Tennant</div> <!--- muse name --->
  831. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  832.  
  833.  
  834. <div class="photo"><img src="https://i.imgur.com/lpofZyU.png"></div> <!--- replace with the url for your photo --->
  835.  
  836. <div class="info">
  837. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  838. </div>
  839.  
  840. <div class="muse_navigation">
  841.  
  842. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  843. </div>
  844.  
  845. </div>
  846.  
  847. <!--- END OF MUSE --->
  848.  
  849. <!--- START OF MUSE --->
  850.  
  851. <div class="main_entry">
  852. <div class="muse">Christopher Liddell</div> <!--- muse name --->
  853. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  854.  
  855.  
  856. <div class="photo"><img src="https://i.imgur.com/lXfJAQY.png"></div> <!--- replace with the url for your photo --->
  857.  
  858. <div class="info">
  859. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  860. </div>
  861.  
  862. <div class="muse_navigation1">
  863.  
  864. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  865. </div>
  866.  
  867. </div>
  868.  
  869. <!--- END OF MUSE --->
  870.  
  871. <!--- START OF MUSE --->
  872.  
  873. <div class="main_entry">
  874. <div class="muse">Friedrich Zweibrücken</div> <!--- muse name --->
  875. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  876.  
  877.  
  878. <div class="photo"><img src="https://i.imgur.com/X7NCVzC.png"></div> <!--- replace with the url for your photo --->
  879.  
  880. <div class="info">
  881. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  882. </div>
  883.  
  884. <div class="muse_navigation">
  885.  
  886. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  887. </div>
  888.  
  889. </div>
  890.  
  891. <!--- END OF MUSE --->
  892.  
  893. <!--- START OF MUSE --->
  894.  
  895. <div class="main_entry">
  896. <div class="muse">Conrad Herschel</div> <!--- muse name --->
  897. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  898.  
  899.  
  900. <div class="photo"><img src="https://i.imgur.com/AnTQVqc.png"></div> <!--- replace with the url for your photo --->
  901.  
  902. <div class="info">
  903. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  904. </div>
  905.  
  906. <div class="muse_navigation1">
  907.  
  908. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  909. </div>
  910.  
  911. </div>
  912.  
  913. <!--- END OF MUSE --->
  914.  
  915. <!--- START OF MUSE --->
  916.  
  917. <div class="main_entry">
  918. <div class="muse">Hans Kroll</div> <!--- muse name --->
  919. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  920.  
  921.  
  922. <div class="photo"><img src="https://i.imgur.com/JYdqJZB.png"></div> <!--- replace with the url for your photo --->
  923.  
  924. <div class="info">
  925. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  926. </div>
  927.  
  928. <div class="muse_navigation">
  929.  
  930. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  931. </div>
  932.  
  933. </div>
  934.  
  935. <!--- END OF MUSE --->
  936.  
  937. <!--- START OF MUSE --->
  938.  
  939. <div class="main_entry">
  940. <div class="muse">Daisy Reyes</div> <!--- muse name --->
  941. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  942.  
  943.  
  944. <div class="photo"><img src="https://i.imgur.com/Mip0ZKq.png"></div> <!--- replace with the url for your photo --->
  945.  
  946. <div class="info">
  947. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  948. </div>
  949.  
  950. <div class="muse_navigation1">
  951.  
  952. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  953. </div>
  954.  
  955. </div>
  956.  
  957. <!--- END OF MUSE --->
  958.  
  959. <!--- START OF MUSE --->
  960.  
  961. <div class="main_entry">
  962. <div class="muse">Jasmine Wayan</div> <!--- muse name --->
  963. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  964.  
  965.  
  966. <div class="photo"><img src="https://i.imgur.com/m2GDRuk.png"></div> <!--- replace with the url for your photo --->
  967.  
  968. <div class="info">
  969. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  970. </div>
  971.  
  972. <div class="muse_navigation">
  973.  
  974. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  975. </div>
  976.  
  977. </div>
  978.  
  979. <!--- END OF MUSE --->
  980.  
  981. <!--- START OF MUSE --->
  982.  
  983. <div class="main_entry">
  984. <div class="muse">Danielle Cumberbatch</div> <!--- muse name --->
  985. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  986.  
  987.  
  988. <div class="photo"><img src="https://i.imgur.com/aDnvKD9.png"></div> <!--- replace with the url for your photo --->
  989.  
  990. <div class="info">
  991. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  992. </div>
  993.  
  994. <div class="muse_navigation1">
  995.  
  996. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  997. </div>
  998.  
  999. </div>
  1000.  
  1001. <!--- END OF MUSE --->
  1002.  
  1003. <!--- START OF MUSE --->
  1004.  
  1005. <div class="main_entry">
  1006. <div class="muse">Joshua Enzo</div> <!--- muse name --->
  1007. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1008.  
  1009.  
  1010. <div class="photo"><img src="https://i.imgur.com/ct6tNOI.png"></div> <!--- replace with the url for your photo --->
  1011.  
  1012. <div class="info">
  1013. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1014. </div>
  1015.  
  1016. <div class="muse_navigation">
  1017.  
  1018. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1019. </div>
  1020.  
  1021. </div>
  1022.  
  1023. <!--- END OF MUSE --->
  1024.  
  1025. <!--- START OF MUSE --->
  1026.  
  1027. <div class="main_entry">
  1028. <div class="muse">David Howlett</div> <!--- muse name --->
  1029. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1030.  
  1031.  
  1032. <div class="photo"><img src="https://i.imgur.com/svv5snq.png"></div> <!--- replace with the url for your photo --->
  1033.  
  1034. <div class="info">
  1035. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1036. </div>
  1037.  
  1038. <div class="muse_navigation1">
  1039.  
  1040. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1041. </div>
  1042.  
  1043. </div>
  1044.  
  1045. <!--- END OF MUSE --->
  1046.  
  1047. <!--- START OF MUSE --->
  1048.  
  1049. <div class="main_entry">
  1050. <div class="muse">Matheus Alves</div> <!--- muse name --->
  1051. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1052.  
  1053.  
  1054. <div class="photo"><img src="https://i.imgur.com/mE0d5q5.png"></div> <!--- replace with the url for your photo --->
  1055.  
  1056. <div class="info">
  1057. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1058. </div>
  1059.  
  1060. <div class="muse_navigation">
  1061.  
  1062. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1063. </div>
  1064.  
  1065. </div>
  1066.  
  1067. <!--- END OF MUSE --->
  1068.  
  1069. <!--- START OF MUSE --->
  1070.  
  1071. <div class="main_entry">
  1072. <div class="muse">Dorian Bedivan</div> <!--- muse name --->
  1073. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1074.  
  1075.  
  1076. <div class="photo"><img src="https://i.imgur.com/RcazKLg.png"></div> <!--- replace with the url for your photo --->
  1077.  
  1078. <div class="info">
  1079. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1080. </div>
  1081.  
  1082. <div class="muse_navigation1">
  1083.  
  1084. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1085. </div>
  1086.  
  1087. </div>
  1088.  
  1089. <!--- END OF MUSE --->
  1090.  
  1091. <!--- START OF MUSE --->
  1092.  
  1093. <div class="main_entry">
  1094. <div class="muse">Miguel Rodríguez</div> <!--- muse name --->
  1095. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1096.  
  1097.  
  1098. <div class="photo"><img src="https://i.imgur.com/RyHdQCk.png"></div> <!--- replace with the url for your photo --->
  1099.  
  1100. <div class="info">
  1101. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1102. </div>
  1103.  
  1104. <div class="muse_navigation">
  1105.  
  1106. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1107. </div>
  1108.  
  1109. </div>
  1110.  
  1111. <!--- END OF MUSE --->
  1112.  
  1113. <!--- START OF MUSE --->
  1114.  
  1115. <div class="main_entry">
  1116. <div class="muse">Eleanor Sloane</div> <!--- muse name --->
  1117. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1118.  
  1119.  
  1120. <div class="photo"><img src="https://i.imgur.com/ZidtZU3.png"></div> <!--- replace with the url for your photo --->
  1121.  
  1122. <div class="info">
  1123. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1124. </div>
  1125.  
  1126. <div class="muse_navigation1">
  1127.  
  1128. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1129. </div>
  1130.  
  1131. </div>
  1132.  
  1133. <!--- END OF MUSE --->
  1134.  
  1135. <!--- START OF MUSE --->
  1136.  
  1137. <div class="main_entry">
  1138. <div class="muse">Minerva Redford</div> <!--- muse name --->
  1139. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1140.  
  1141.  
  1142. <div class="photo"><img src="https://i.imgur.com/L6Zu48n.png"></div> <!--- replace with the url for your photo --->
  1143.  
  1144. <div class="info">
  1145. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1146. </div>
  1147.  
  1148. <div class="muse_navigation">
  1149.  
  1150. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1151. </div>
  1152.  
  1153. </div>
  1154.  
  1155. <!--- END OF MUSE --->
  1156.  
  1157. <!--- START OF MUSE --->
  1158.  
  1159. <div class="main_entry">
  1160. <div class="muse">Ethan Mackay</div> <!--- muse name --->
  1161. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1162.  
  1163.  
  1164. <div class="photo"><img src="https://i.imgur.com/1yQD7I4.png"></div> <!--- replace with the url for your photo --->
  1165.  
  1166. <div class="info">
  1167. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1168. </div>
  1169.  
  1170. <div class="muse_navigation1">
  1171.  
  1172. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1173. </div>
  1174.  
  1175. </div>
  1176.  
  1177. <!--- END OF MUSE --->
  1178.  
  1179. <!--- START OF MUSE --->
  1180.  
  1181. <div class="main_entry">
  1182. <div class="muse">Morgana Harrigton</div> <!--- muse name --->
  1183. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1184.  
  1185.  
  1186. <div class="photo"><img src="https://i.imgur.com/v9iara9.png"></div> <!--- replace with the url for your photo --->
  1187.  
  1188. <div class="info">
  1189. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1190. </div>
  1191.  
  1192. <div class="muse_navigation">
  1193.  
  1194. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1195. </div>
  1196.  
  1197. </div>
  1198.  
  1199. <!--- END OF MUSE --->
  1200.  
  1201. <!--- START OF MUSE --->
  1202.  
  1203. <div class="main_entry">
  1204. <div class="muse">Gregory Lancaster</div> <!--- muse name --->
  1205. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1206.  
  1207.  
  1208. <div class="photo"><img src="https://i.imgur.com/oxBSHaB.png"></div> <!--- replace with the url for your photo --->
  1209.  
  1210. <div class="info">
  1211. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1212. </div>
  1213.  
  1214. <div class="muse_navigation1">
  1215.  
  1216. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1217. </div>
  1218.  
  1219. </div>
  1220.  
  1221. <!--- END OF MUSE --->
  1222.  
  1223. <!--- START OF MUSE --->
  1224.  
  1225. <div class="main_entry">
  1226. <div class="muse">Natasha Dawnson</div> <!--- muse name --->
  1227. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1228.  
  1229.  
  1230. <div class="photo"><img src="https://i.imgur.com/tsPGuSO.png"></div> <!--- replace with the url for your photo --->
  1231.  
  1232. <div class="info">
  1233. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1234. </div>
  1235.  
  1236. <div class="muse_navigation">
  1237.  
  1238. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1239. </div>
  1240.  
  1241. </div>
  1242.  
  1243. <!--- END OF MUSE --->
  1244.  
  1245. <!--- START OF MUSE --->
  1246.  
  1247. <div class="main_entry">
  1248. <div class="muse">Hadassa Cuomo</div> <!--- muse name --->
  1249. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1250.  
  1251.  
  1252. <div class="photo"><img src="https://i.imgur.com/BikGk2U.png"></div> <!--- replace with the url for your photo --->
  1253.  
  1254. <div class="info">
  1255. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1256. </div>
  1257.  
  1258. <div class="muse_navigation1">
  1259.  
  1260. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1261. </div>
  1262.  
  1263. </div>
  1264.  
  1265. <!--- END OF MUSE --->
  1266.  
  1267. <!--- START OF MUSE --->
  1268.  
  1269. <div class="main_entry">
  1270. <div class="muse">Nathaniel Hudson</div> <!--- muse name --->
  1271. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1272.  
  1273.  
  1274. <div class="photo"><img src="https://i.imgur.com/7ergLpD.png"></div> <!--- replace with the url for your photo --->
  1275.  
  1276. <div class="info">
  1277. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1278. </div>
  1279.  
  1280. <div class="muse_navigation">
  1281.  
  1282. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1283. </div>
  1284.  
  1285. </div>
  1286.  
  1287. <!--- END OF MUSE --->
  1288.  
  1289. <!--- START OF MUSE --->
  1290.  
  1291. <div class="main_entry">
  1292. <div class="muse">Han Moonri</div> <!--- muse name --->
  1293. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1294.  
  1295.  
  1296. <div class="photo"><img src="https://i.imgur.com/S8A9SHT.png"></div> <!--- replace with the url for your photo --->
  1297.  
  1298. <div class="info">
  1299. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1300. </div>
  1301.  
  1302. <div class="muse_navigation1">
  1303.  
  1304. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1305. </div>
  1306.  
  1307. </div>
  1308.  
  1309. <!--- END OF MUSE --->
  1310.  
  1311. <!--- START OF MUSE --->
  1312.  
  1313. <div class="main_entry">
  1314. <div class="muse">Phoebe Chase</div> <!--- muse name --->
  1315. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1316.  
  1317.  
  1318. <div class="photo"><img src="https://i.imgur.com/P8myMhm.png"></div> <!--- replace with the url for your photo --->
  1319.  
  1320. <div class="info">
  1321. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1322. </div>
  1323.  
  1324. <div class="muse_navigation">
  1325.  
  1326. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1327. </div>
  1328.  
  1329. </div>
  1330.  
  1331. <!--- END OF MUSE --->
  1332.  
  1333. <!--- START OF MUSE --->
  1334.  
  1335. <div class="main_entry">
  1336. <div class="muse">Helena Vollenhovenn</div> <!--- muse name --->
  1337. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1338.  
  1339.  
  1340. <div class="photo"><img src="https://i.imgur.com/u5vs125.png"></div> <!--- replace with the url for your photo --->
  1341.  
  1342. <div class="info">
  1343. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1344. </div>
  1345.  
  1346. <div class="muse_navigation1">
  1347.  
  1348. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1349. </div>
  1350.  
  1351. </div>
  1352.  
  1353. <!--- END OF MUSE --->
  1354.  
  1355. <!--- START OF MUSE --->
  1356.  
  1357. <div class="main_entry">
  1358. <div class="muse">Renée Pace</div> <!--- muse name --->
  1359. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1360.  
  1361.  
  1362. <div class="photo"><img src="https://i.imgur.com/GTbffWF.png"></div> <!--- replace with the url for your photo --->
  1363.  
  1364. <div class="info">
  1365. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1366. </div>
  1367.  
  1368. <div class="muse_navigation">
  1369.  
  1370. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1371. </div>
  1372.  
  1373. </div>
  1374.  
  1375. <!--- END OF MUSE --->
  1376.  
  1377. <!--- START OF MUSE --->
  1378.  
  1379. <div class="main_entry">
  1380. <div class="muse">Hunter Ramsay</div> <!--- muse name --->
  1381. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1382.  
  1383.  
  1384. <div class="photo"><img src="https://i.imgur.com/7Cch1dV.png"></div> <!--- replace with the url for your photo --->
  1385.  
  1386. <div class="info">
  1387. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1388. </div>
  1389.  
  1390. <div class="muse_navigation1">
  1391.  
  1392. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1393. </div>
  1394.  
  1395. </div>
  1396.  
  1397. <!--- END OF MUSE --->
  1398.  
  1399. <!--- START OF MUSE --->
  1400.  
  1401. <div class="main_entry">
  1402. <div class="muse">September Wright</div> <!--- muse name --->
  1403. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1404.  
  1405.  
  1406. <div class="photo"><img src="https://i.imgur.com/JGWiH5a.png"></div> <!--- replace with the url for your photo --->
  1407.  
  1408. <div class="info">
  1409. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1410. </div>
  1411.  
  1412. <div class="muse_navigation">
  1413.  
  1414. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1415. </div>
  1416.  
  1417. </div>
  1418.  
  1419. <!--- END OF MUSE --->
  1420.  
  1421. <!--- START OF MUSE --->
  1422.  
  1423. <div class="main_entry">
  1424. <div class="muse">Kang Minhyuk</div> <!--- muse name --->
  1425. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1426.  
  1427.  
  1428. <div class="photo"><img src="https://i.imgur.com/bBojmCc.png"></div> <!--- replace with the url for your photo --->
  1429.  
  1430. <div class="info">
  1431. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1432. </div>
  1433.  
  1434. <div class="muse_navigation1">
  1435.  
  1436. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1437. </div>
  1438.  
  1439. </div>
  1440.  
  1441. <!--- END OF MUSE --->
  1442.  
  1443. <!--- START OF MUSE --->
  1444.  
  1445. <div class="main_entry">
  1446. <div class="muse">Verônica Castiel</div> <!--- muse name --->
  1447. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1448.  
  1449.  
  1450. <div class="photo"><img src="https://i.imgur.com/eSeCcO5.png"></div> <!--- replace with the url for your photo --->
  1451.  
  1452. <div class="info">
  1453. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1454. </div>
  1455.  
  1456. <div class="muse_navigation">
  1457.  
  1458. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1459. </div>
  1460.  
  1461. </div>
  1462.  
  1463. <!--- END OF MUSE --->
  1464.  
  1465. <!--- START OF MUSE --->
  1466.  
  1467. <div class="main_entry">
  1468. <div class="muse">Killian Montgomery</div> <!--- muse name --->
  1469. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1470.  
  1471.  
  1472. <div class="photo"><img src="https://i.imgur.com/V45FtMO.png"></div> <!--- replace with the url for your photo --->
  1473.  
  1474. <div class="info">
  1475. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1476. </div>
  1477.  
  1478. <div class="muse_navigation1">
  1479.  
  1480. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1481. </div>
  1482.  
  1483. </div>
  1484.  
  1485. <!--- END OF MUSE --->
  1486.  
  1487. <!--- START OF MUSE --->
  1488.  
  1489. <div class="main_entry">
  1490. <div class="muse">Victor Bakker</div> <!--- muse name --->
  1491. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1492.  
  1493.  
  1494. <div class="photo"><img src="https://i.imgur.com/c7U6jhe.png"></div> <!--- replace with the url for your photo --->
  1495.  
  1496. <div class="info">
  1497. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1498. </div>
  1499.  
  1500. <div class="muse_navigation">
  1501.  
  1502. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1503. </div>
  1504.  
  1505. </div>
  1506.  
  1507. <!--- END OF MUSE --->
  1508.  
  1509. <!--- START OF MUSE --->
  1510.  
  1511. <div class="main_entry">
  1512. <div class="muse">Leona Wright</div> <!--- muse name --->
  1513. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1514.  
  1515.  
  1516. <div class="photo"><img src="https://i.imgur.com/A5xpzPo.png"></div> <!--- replace with the url for your photo --->
  1517.  
  1518. <div class="info">
  1519. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1520. </div>
  1521.  
  1522. <div class="muse_navigation1">
  1523.  
  1524. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1525. </div>
  1526.  
  1527. </div>
  1528.  
  1529. <!--- END OF MUSE --->
  1530.  
  1531. <!--- START OF MUSE --->
  1532.  
  1533. <div class="main_entry">
  1534. <div class="muse">muse name</div> <!--- muse name --->
  1535. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1536.  
  1537.  
  1538. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1539.  
  1540. <div class="info">
  1541. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1542. </div>
  1543.  
  1544. <div class="muse_navigation">
  1545.  
  1546. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1547. </div>
  1548.  
  1549. </div>
  1550.  
  1551. <!--- END OF MUSE --->
  1552.  
  1553. <!--- START OF MUSE --->
  1554.  
  1555. <div class="main_entry">
  1556. <div class="muse">Michael Simpson</div> <!--- muse name --->
  1557. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1558.  
  1559.  
  1560. <div class="photo"><img src="https://i.imgur.com/IpAEJ5D.png"></div> <!--- replace with the url for your photo --->
  1561.  
  1562. <div class="info">
  1563. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1564. </div>
  1565.  
  1566. <div class="muse_navigation1">
  1567.  
  1568. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1569. </div>
  1570.  
  1571. </div>
  1572.  
  1573. <!--- END OF MUSE --->
  1574.  
  1575. <!--- START OF MUSE --->
  1576.  
  1577. <div class="main_entry">
  1578. <div class="muse">muse name</div> <!--- muse name --->
  1579. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1580.  
  1581.  
  1582. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1583.  
  1584. <div class="info">
  1585. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1586. </div>
  1587.  
  1588. <div class="muse_navigation">
  1589.  
  1590. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1591. </div>
  1592.  
  1593. </div>
  1594.  
  1595. <!--- END OF MUSE --->
  1596.  
  1597. <!--- START OF MUSE --->
  1598.  
  1599. <div class="main_entry">
  1600. <div class="muse">Milan Rossi</div> <!--- muse name --->
  1601. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1602.  
  1603.  
  1604. <div class="photo"><img src="https://i.imgur.com/9ZlMKw0.png"></div> <!--- replace with the url for your photo --->
  1605.  
  1606. <div class="info">
  1607. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1608. </div>
  1609.  
  1610. <div class="muse_navigation1">
  1611.  
  1612. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1613. </div>
  1614.  
  1615. </div>
  1616.  
  1617. <!--- END OF MUSE --->
  1618.  
  1619. <!--- START OF MUSE --->
  1620.  
  1621. <div class="main_entry">
  1622. <div class="muse">muse name</div> <!--- muse name --->
  1623. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1624.  
  1625.  
  1626. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1627.  
  1628. <div class="info">
  1629. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1630. </div>
  1631.  
  1632. <div class="muse_navigation">
  1633.  
  1634. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1635. </div>
  1636.  
  1637. </div>
  1638.  
  1639. <!--- END OF MUSE --->
  1640.  
  1641. <!--- START OF MUSE --->
  1642.  
  1643. <div class="main_entry">
  1644. <div class="muse">Moon Woojin</div> <!--- muse name --->
  1645. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1646.  
  1647.  
  1648. <div class="photo"><img src="https://i.imgur.com/yqG2HEC.png"></div> <!--- replace with the url for your photo --->
  1649.  
  1650. <div class="info">
  1651. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1652. </div>
  1653.  
  1654. <div class="muse_navigation1">
  1655.  
  1656. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1657. </div>
  1658.  
  1659. </div>
  1660.  
  1661. <!--- END OF MUSE --->
  1662.  
  1663. <!--- START OF MUSE --->
  1664.  
  1665. <div class="main_entry">
  1666. <div class="muse">muse name</div> <!--- muse name --->
  1667. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1668.  
  1669.  
  1670. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1671.  
  1672. <div class="info">
  1673. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1674. </div>
  1675.  
  1676. <div class="muse_navigation">
  1677.  
  1678. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1679. </div>
  1680.  
  1681. </div>
  1682.  
  1683. <!--- END OF MUSE --->
  1684.  
  1685. <!--- START OF MUSE --->
  1686.  
  1687. <div class="main_entry">
  1688. <div class="muse">Nathan Hyde</div> <!--- muse name --->
  1689. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1690.  
  1691.  
  1692. <div class="photo"><img src="https://i.imgur.com/CYBP1zM.png"></div> <!--- replace with the url for your photo --->
  1693.  
  1694. <div class="info">
  1695. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1696. </div>
  1697.  
  1698. <div class="muse_navigation1">
  1699.  
  1700. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1701. </div>
  1702.  
  1703. </div>
  1704.  
  1705. <!--- END OF MUSE --->
  1706.  
  1707. <!--- START OF MUSE --->
  1708.  
  1709. <div class="main_entry">
  1710. <div class="muse">muse name</div> <!--- muse name --->
  1711. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1712.  
  1713.  
  1714. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1715.  
  1716. <div class="info">
  1717. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1718. </div>
  1719.  
  1720. <div class="muse_navigation">
  1721.  
  1722. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1723. </div>
  1724.  
  1725. </div>
  1726.  
  1727. <!--- END OF MUSE --->
  1728.  
  1729. <!--- START OF MUSE --->
  1730.  
  1731. <div class="main_entry">
  1732. <div class="muse">Noah Ramsay</div> <!--- muse name --->
  1733. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1734.  
  1735.  
  1736. <div class="photo"><img src="https://i.imgur.com/w3pAJSv.png"></div> <!--- replace with the url for your photo --->
  1737.  
  1738. <div class="info">
  1739. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1740. </div>
  1741.  
  1742. <div class="muse_navigation1">
  1743.  
  1744. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1745. </div>
  1746.  
  1747. </div>
  1748.  
  1749. <!--- END OF MUSE --->
  1750.  
  1751. <!--- START OF MUSE --->
  1752.  
  1753. <div class="main_entry">
  1754. <div class="muse">muse name</div> <!--- muse name --->
  1755. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1756.  
  1757.  
  1758. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1759.  
  1760. <div class="info">
  1761. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1762. </div>
  1763.  
  1764. <div class="muse_navigation">
  1765.  
  1766. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1767. </div>
  1768.  
  1769. </div>
  1770.  
  1771. <!--- END OF MUSE --->
  1772.  
  1773. <!--- START OF MUSE --->
  1774.  
  1775. <div class="main_entry">
  1776. <div class="muse">Ocean Rivers</div> <!--- muse name --->
  1777. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1778.  
  1779.  
  1780. <div class="photo"><img src="https://i.imgur.com/RbBZSQA.png"></div> <!--- replace with the url for your photo --->
  1781.  
  1782. <div class="info">
  1783. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1784. </div>
  1785.  
  1786. <div class="muse_navigation1">
  1787.  
  1788. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1789. </div>
  1790.  
  1791. </div>
  1792.  
  1793. <!--- END OF MUSE --->
  1794.  
  1795. <!--- START OF MUSE --->
  1796.  
  1797. <div class="main_entry">
  1798. <div class="muse">muse name</div> <!--- muse name --->
  1799. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1800.  
  1801.  
  1802. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1803.  
  1804. <div class="info">
  1805. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1806. </div>
  1807.  
  1808. <div class="muse_navigation">
  1809.  
  1810. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1811. </div>
  1812.  
  1813. </div>
  1814.  
  1815. <!--- END OF MUSE --->
  1816.  
  1817. <!--- START OF MUSE --->
  1818.  
  1819. <div class="main_entry">
  1820. <div class="muse">Robert Hyde</div> <!--- muse name --->
  1821. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1822.  
  1823.  
  1824. <div class="photo"><img src="https://i.imgur.com/suCoWwV.png"></div> <!--- replace with the url for your photo --->
  1825.  
  1826. <div class="info">
  1827. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1828. </div>
  1829.  
  1830. <div class="muse_navigation1">
  1831.  
  1832. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1833. </div>
  1834.  
  1835. </div>
  1836.  
  1837. <!--- END OF MUSE --->
  1838.  
  1839. <!--- START OF MUSE --->
  1840.  
  1841. <div class="main_entry">
  1842. <div class="muse">muse name</div> <!--- muse name --->
  1843. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1844.  
  1845.  
  1846. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1847.  
  1848. <div class="info">
  1849. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1850. </div>
  1851.  
  1852. <div class="muse_navigation">
  1853.  
  1854. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1855. </div>
  1856.  
  1857. </div>
  1858.  
  1859. <!--- END OF MUSE --->
  1860.  
  1861. <!--- START OF MUSE --->
  1862.  
  1863. <div class="main_entry">
  1864. <div class="muse">Samuel Borges</div> <!--- muse name --->
  1865. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1866.  
  1867.  
  1868. <div class="photo"><img src="https://i.imgur.com/lWMBjc9.png"></div> <!--- replace with the url for your photo --->
  1869.  
  1870. <div class="info">
  1871. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1872. </div>
  1873.  
  1874. <div class="muse_navigation1">
  1875.  
  1876. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1877. </div>
  1878.  
  1879. </div>
  1880.  
  1881. <!--- END OF MUSE --->
  1882.  
  1883. <!--- START OF MUSE --->
  1884.  
  1885. <div class="main_entry">
  1886. <div class="muse">muse name</div> <!--- muse name --->
  1887. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1888.  
  1889.  
  1890. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1891.  
  1892. <div class="info">
  1893. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1894. </div>
  1895.  
  1896. <div class="muse_navigation">
  1897.  
  1898. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1899. </div>
  1900.  
  1901. </div>
  1902.  
  1903. <!--- END OF MUSE --->
  1904.  
  1905. <!--- START OF MUSE --->
  1906.  
  1907. <div class="main_entry">
  1908. <div class="muse">Scott Pace</div> <!--- muse name --->
  1909. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1910.  
  1911.  
  1912. <div class="photo"><img src="https://i.imgur.com/1xGiop3.png"></div> <!--- replace with the url for your photo --->
  1913.  
  1914. <div class="info">
  1915. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1916. </div>
  1917.  
  1918. <div class="muse_navigation1">
  1919.  
  1920. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1921. </div>
  1922.  
  1923. </div>
  1924.  
  1925. <!--- END OF MUSE --->
  1926.  
  1927. <!--- START OF MUSE --->
  1928.  
  1929. <div class="main_entry">
  1930. <div class="muse">muse name</div> <!--- muse name --->
  1931. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1932.  
  1933.  
  1934. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1935.  
  1936. <div class="info">
  1937. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1938. </div>
  1939.  
  1940. <div class="muse_navigation">
  1941.  
  1942. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1943. </div>
  1944.  
  1945. </div>
  1946.  
  1947. <!--- END OF MUSE --->
  1948.  
  1949. <!--- START OF MUSE --->
  1950.  
  1951. <div class="main_entry">
  1952. <div class="muse">Tariq Jawad</div> <!--- muse name --->
  1953. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1954.  
  1955.  
  1956. <div class="photo"><img src="https://i.imgur.com/bG1IIHw.png"></div> <!--- replace with the url for your photo --->
  1957.  
  1958. <div class="info">
  1959. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1960. </div>
  1961.  
  1962. <div class="muse_navigation1">
  1963.  
  1964. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1965. </div>
  1966.  
  1967. </div>
  1968.  
  1969. <!--- END OF MUSE --->
  1970.  
  1971. <!--- START OF MUSE --->
  1972.  
  1973. <div class="main_entry">
  1974. <div class="muse">muse name</div> <!--- muse name --->
  1975. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1976.  
  1977.  
  1978. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  1979.  
  1980. <div class="info">
  1981. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  1982. </div>
  1983.  
  1984. <div class="muse_navigation">
  1985.  
  1986. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  1987. </div>
  1988.  
  1989. </div>
  1990.  
  1991. <!--- END OF MUSE --->
  1992.  
  1993. <!--- START OF MUSE --->
  1994.  
  1995. <div class="main_entry">
  1996. <div class="muse">Vanessa Blevins</div> <!--- muse name --->
  1997. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  1998.  
  1999.  
  2000. <div class="photo"><img src="https://i.imgur.com/u19OwLD.png"></div> <!--- replace with the url for your photo --->
  2001.  
  2002. <div class="info">
  2003. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2004. </div>
  2005.  
  2006. <div class="muse_navigation1">
  2007.  
  2008. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2009. </div>
  2010.  
  2011. </div>
  2012.  
  2013. <!--- END OF MUSE --->
  2014.  
  2015. <!--- START OF MUSE --->
  2016.  
  2017. <div class="main_entry">
  2018. <div class="muse">muse name</div> <!--- muse name --->
  2019. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2020.  
  2021.  
  2022. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2023.  
  2024. <div class="info">
  2025. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2026. </div>
  2027.  
  2028. <div class="muse_navigation">
  2029.  
  2030. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2031. </div>
  2032.  
  2033. </div>
  2034.  
  2035. <!--- END OF MUSE --->
  2036.  
  2037. <!--- START OF MUSE --->
  2038.  
  2039. <div class="main_entry">
  2040. <div class="muse">Wang Haejin</div> <!--- muse name --->
  2041. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2042.  
  2043.  
  2044. <div class="photo"><img src="https://i.imgur.com/2FgAVda.png"></div> <!--- replace with the url for your photo --->
  2045.  
  2046. <div class="info">
  2047. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2048. </div>
  2049.  
  2050. <div class="muse_navigation1">
  2051.  
  2052. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2053. </div>
  2054.  
  2055. </div>
  2056.  
  2057. <!--- END OF MUSE --->
  2058.  
  2059. <!--- START OF MUSE --->
  2060.  
  2061. <div class="main_entry">
  2062. <div class="muse">muse name</div> <!--- muse name --->
  2063. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2064.  
  2065.  
  2066. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2067.  
  2068. <div class="info">
  2069. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2070. </div>
  2071.  
  2072. <div class="muse_navigation">
  2073.  
  2074. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2075. </div>
  2076.  
  2077. </div>
  2078.  
  2079. <!--- END OF MUSE --->
  2080.  
  2081. <!--- START OF MUSE --->
  2082.  
  2083. <div class="main_entry">
  2084. <div class="muse">Yuri Jordan</div> <!--- muse name --->
  2085. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2086.  
  2087.  
  2088. <div class="photo"><img src="https://i.imgur.com/CUbnftH.png"></div> <!--- replace with the url for your photo --->
  2089.  
  2090. <div class="info">
  2091. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2092. </div>
  2093.  
  2094. <div class="muse_navigation1">
  2095.  
  2096. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2097. </div>
  2098.  
  2099. </div>
  2100.  
  2101. <!--- END OF MUSE --->
  2102.  
  2103. <!--- START OF MUSE --->
  2104.  
  2105. <div class="main_entry">
  2106. <div class="muse">muse name</div> <!--- muse name --->
  2107. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2108.  
  2109.  
  2110. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2111.  
  2112. <div class="info">
  2113. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2114. </div>
  2115.  
  2116. <div class="muse_navigation">
  2117.  
  2118. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2119. </div>
  2120.  
  2121. </div>
  2122.  
  2123. <!--- END OF MUSE --->
  2124.  
  2125. <!--- START OF MUSE --->
  2126.  
  2127. <div class="main_entry">
  2128. <div class="muse">muse name</div> <!--- muse name --->
  2129. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2130.  
  2131.  
  2132. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2133.  
  2134. <div class="info">
  2135. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2136. </div>
  2137.  
  2138. <div class="muse_navigation1">
  2139.  
  2140. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2141. </div>
  2142.  
  2143. </div>
  2144.  
  2145. <!--- END OF MUSE --->
  2146.  
  2147. <!--- START OF MUSE --->
  2148.  
  2149. <div class="main_entry">
  2150. <div class="muse">muse name</div> <!--- muse name --->
  2151. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2152.  
  2153.  
  2154. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2155.  
  2156. <div class="info">
  2157. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2158. </div>
  2159.  
  2160. <div class="muse_navigation">
  2161.  
  2162. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2163. </div>
  2164.  
  2165. </div>
  2166.  
  2167. <!--- END OF MUSE --->
  2168.  
  2169. <!--- START OF MUSE --->
  2170.  
  2171. <div class="main_entry">
  2172. <div class="muse">muse name</div> <!--- muse name --->
  2173. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2174.  
  2175.  
  2176. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2177.  
  2178. <div class="info">
  2179. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2180. </div>
  2181.  
  2182. <div class="muse_navigation1">
  2183.  
  2184. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2185. </div>
  2186.  
  2187. </div>
  2188.  
  2189. <!--- END OF MUSE --->
  2190.  
  2191. <!--- START OF MUSE --->
  2192.  
  2193. <div class="main_entry">
  2194. <div class="muse">muse name</div> <!--- muse name --->
  2195. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2196.  
  2197.  
  2198. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2199.  
  2200. <div class="info">
  2201. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2202. </div>
  2203.  
  2204. <div class="muse_navigation">
  2205.  
  2206. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2207. </div>
  2208.  
  2209. </div>
  2210.  
  2211. <!--- END OF MUSE --->
  2212.  
  2213. <!--- START OF MUSE --->
  2214.  
  2215. <div class="main_entry">
  2216. <div class="muse">muse name</div> <!--- muse name --->
  2217. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2218.  
  2219.  
  2220. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2221.  
  2222. <div class="info">
  2223. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2224. </div>
  2225.  
  2226. <div class="muse_navigation1">
  2227.  
  2228. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2229. </div>
  2230.  
  2231. </div>
  2232.  
  2233. <!--- END OF MUSE --->
  2234.  
  2235. <!--- START OF MUSE --->
  2236.  
  2237. <div class="main_entry">
  2238. <div class="muse">muse name</div> <!--- muse name --->
  2239. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2240.  
  2241.  
  2242. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2243.  
  2244. <div class="info">
  2245. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2246. </div>
  2247.  
  2248. <div class="muse_navigation">
  2249.  
  2250. <a href="/">smiths</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2251. </div>
  2252.  
  2253. </div>
  2254.  
  2255. <!--- END OF MUSE --->
  2256.  
  2257. <!--- START OF MUSE --->
  2258.  
  2259. <div class="main_entry">
  2260. <div class="muse">muse name</div> <!--- muse name --->
  2261. <div class="muse_etc">faceclaim</div> <div class="muse_etc">idade</div> <div class="muse_etc">label</div>
  2262.  
  2263.  
  2264. <div class="photo"><img src="https://via.placeholder.com/200x150"></div> <!--- replace with the url for your photo --->
  2265.  
  2266. <div class="info">
  2267. add as much information as you'd like - it has masonry so it'll flow very nicely. i suggest having enough text here for next to the icon tho. enjoy. don't enjoy. idc. <!--- text next to icon underneath character section --->
  2268. </div>
  2269.  
  2270. <div class="muse_navigation1">
  2271.  
  2272. <a href="/">lux</a> <!--- ABOUT POP-UP. UNLESS REMOVING PLEASE DO NOT TOUCH. --->
  2273. </div>
  2274.  
  2275. </div>
  2276.  
  2277. <!--- END OF MUSE --->
  2278.  
  2279.  
  2280.  
  2281. <!---------- END OF MUSES CONTAIN ---------->
  2282. </div></div>
  2283.  
  2284. <div id="bottom">
  2285. <div id="bottom_navigation">
  2286. <a href="/" title="INDEX"><span class="th th-home-o"></span></a>
  2287. <a href="/ask" title="MESSAGE"><span class="th th-chat-bubbles"></span></a>
  2288. <a href="/archive" title="ARCHIVE"><span class="th th-calendar-1-o"></span></a>
  2289. </div>
  2290. <div id="bottom_credit">
  2291. <a href="https://scftlcves.tumblr.com" title="THEME CREDIT"><span class="th th-heart-1-o"></span></a>
  2292. </div>
  2293. </div>
  2294.  
  2295. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement