Advertisement
sweetestgale

mytrish

Dec 2nd, 2015
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.04 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}
  7. <meta name="description" content="{MetaDescription}" />
  8. {/block:Description}
  9.  
  10.  
  11. <meta name="color:background" content="#000">
  12. <meta name="image:Background" content=""/>
  13. <meta name="color:text" content="#000"/>
  14. <meta name="color:links" content="#525252"/>
  15. <meta name="color:links hover" content="#fff"/>
  16. <meta name="color:links hover shadow" content="#FFF300"/>
  17. <meta name="color:scrollbar track" content="#0101DF"/>
  18. <meta name="color:scrollbar thumb" content="#000"/>
  19. <meta name="image:info" content=""/>
  20. <meta name="color:tags" content="#000"/>
  21. <meta name="color:italic" content="#aa2828"/>
  22. <meta name="color:bold" content="#aa2828"/>
  23. <meta name="image:popup" content=""/>
  24. <meta name="color:title" content="#fff"/>
  25. <meta name="color:lis" content="#444444"/>
  26.  
  27.  
  28. <meta name="text:Link 1" content=""/>
  29. <meta name="text:Link 1 URL" content=""/>
  30. <meta name="text:Link 2" content=""/>
  31. <meta name="text:Link 2 URL" content=""/>
  32. <meta name="text:Link 3" content=""/>
  33. <meta name="text:Link 3 URL" content=""/>
  34. <meta name="text:Link 4" content=""/>
  35. <meta name="text:Link 4 URL" content=""/>
  36. <meta name="text:Link 5" content=""/>
  37. <meta name="text:Link 5 URL" content=""/>
  38.  
  39.  
  40. <link href='https://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'>
  41. <link href='https://fonts.googleapis.com/css?family=Oswald:400,700' rel='stylesheet' type='text/css'>
  42. <link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:400,700' rel='stylesheet' type='text/css'>
  43. <link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'>
  44. <link href='https://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css'>
  45. <link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
  46. <link href='https://fonts.googleapis.com/css?family=Fjalla+One' rel='stylesheet' type='text/css'>
  47.  
  48.  
  49. <script type="text/javascript"
  50. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  51. <script>
  52. $(document).ready(function() {
  53. //
  54. $('a.poplight[href^=#]').click(function() {
  55. var popID = $(this).attr('rel'); //Get Popup Name
  56. var popURL = $(this).attr('href'); //Get Popup href to define size
  57. var query= popURL.split('?');
  58. var dim= query[1].split('&');
  59. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  60. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  61. var popMargTop = ($('#' + popID).height() + 80) / 2;
  62. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  63. //Apply Margin to Popup
  64. $('#' + popID).css({
  65. 'margin-top' : -popMargTop,
  66. 'margin-left' : -popMargLeft
  67. });
  68. $('body').append('<div id="fade"></div>');
  69. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  70. return false;
  71. });
  72. $('a.close, #fade').live('click', function() {
  73. $('#fade , .popup_block').fadeOut(function() {
  74. $('#fade, a.close').remove(); //fade them both out
  75. });
  76. return false;
  77. });
  78. });
  79. </script>
  80.  
  81. <!--tooltips by tutorial-baby-->
  82. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  83.  
  84. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  85. <script>
  86. (function($){
  87. $(document).ready(function(){
  88. $("a[title]").style_my_tooltips({
  89. tip_follows_cursor:true,
  90. tip_delay_time:10,
  91. tip_fade_speed:600,
  92. attribute:"title"
  93. });
  94. });
  95. })(jQuery);
  96. </script>
  97. <style>
  98. .tooltip{
  99. display: inline;
  100. position: relative;
  101. }
  102.  
  103.  
  104.  
  105.  
  106. #s-m-t-tooltip {
  107. max-width:300px; /*how big the tooltip can be at most*/
  108. width:35px;
  109. border-radius: 2px; /*change your border radius*/
  110. padding:3px 4px 5px 4px; /*padding inside tooltip*/
  111. margin:20px 7px -2px 20px; /*distance from word*/
  112. background-color:#444444; /*background color*/
  113. font-family: 'Roboto', sans-serif;
  114. text-align: center;
  115. font-size:9px;
  116. color:#ededed;
  117. font-weight:bold;
  118. text-transform: uppercase;
  119. -webkit-transition: all 0.3s ease-out;
  120. -moz-transition: all 0.3s ease-out;
  121. transition: all 0.3s ease-out;
  122. z-index:999999999999999999999999999999999999;
  123. }
  124. </style>
  125.  
  126.  
  127. <style>
  128.  
  129.  
  130.  
  131.  
  132. #fade { /*--Transparent background layer--*/
  133. display: none; /*--hidden by default--*/
  134. background: #000;
  135. position: fixed; left: 0; top: 0;
  136. width: 100%; height: 100%;
  137. opacity: .80;
  138. z-index: 9999;
  139. }
  140. .popup_block{
  141. display: none; /*--hidden by default--*/
  142. background: #000;
  143. color:{color:text};
  144. padding: 20px;
  145. border:1px solid {color:border};
  146. height: 350px;
  147. float: left;
  148. font-size: 9px;
  149. text-align: left;
  150. position: fixed;
  151. top: 50%; left: 50%;
  152. background-image: url({image:popup});
  153. z-index: 99999;
  154. /*--CSS3 Box Shadows--*/
  155. -webkit-box-shadow: 0px 0px 20px #000;
  156. -moz-box-shadow: 0px 0px 20px #000;
  157. box-shadow: 0px 0px 20px #000;
  158. /*--CSS3 Rounded Corners--*/
  159. -webkit-border-radius: 0px;
  160. -moz-border-radius: 0px;
  161. border-radius: 0px;
  162. max-height:400px;
  163. overflow:auto;
  164. }
  165.  
  166.  
  167. /*--Making IE6 Understand Fixed Positioning--*/
  168. *html #fade {
  169. position: absolute;
  170. }
  171. *html .popup_block {
  172. position: absolute;
  173. }
  174.  
  175. #nav {
  176. text-transform: uppercase;
  177. text-align: center;
  178. line-height: 30px;
  179. }
  180.  
  181. #titlea {
  182. text-transform: uppercase;
  183. font-family: 'Montserrat', sans-serif;
  184. font-size: 20px;
  185.  
  186. }
  187.  
  188. #texta {
  189. text-align: left;
  190. }
  191.  
  192. /*basic*/
  193.  
  194. ::-webkit-scrollbar-thumb:vertical {
  195.  
  196. border: 1px solid#fff;
  197. background-color: ;
  198.  
  199. }
  200.  
  201. ::-webkit-scrollbar {
  202.  
  203. width: 1px;
  204.  
  205. }
  206.  
  207.  
  208.  
  209. ::selection {
  210. background: #730000;
  211. color: #fff;
  212. }
  213.  
  214. ::-moz-selection {
  215. background: #HEX selection color;
  216. color: #HEX font color;
  217. }
  218.  
  219. ::-webkit-selection {
  220. background: #HEX selection color;
  221. color: #HEX font color;
  222. }
  223.  
  224.  
  225. .showme{
  226. display: none;
  227. -webkit-transition: all 0.3s ease;
  228. -moz-transition: all 0.3s ease;
  229. -o-transition: all 0.3s ease;
  230. transition: all 0.3s ease-out;
  231.  
  232. }
  233.  
  234. .showhim {
  235. margin-left: 310px;
  236. margin-top: 85px;
  237. text-transform: uppercase;
  238. font-family: 'Montserrat', sans-serif;
  239. -webkit-transition: all 0.3s ease;
  240. -moz-transition: all 0.3s ease;
  241. -o-transition: all 0.3s ease;
  242. transition: all 0.3s ease-out;
  243.  
  244. }
  245. .showhim:hover .showme{
  246. display : block;
  247.  
  248. width: 100px;
  249. padding: 25px;
  250. background: #000;
  251. opacity: 0.7;
  252. margin: 25px;
  253. position: fixed;
  254. margin-left: -50px;
  255. margin-top: 150px;
  256. -webkit-transition: all 0.3s ease;
  257. -moz-transition: all 0.3s ease;
  258. -o-transition: all 0.3s ease;
  259. transition: all 0.3s ease-out;
  260. }
  261.  
  262.  
  263. body {
  264. background-color: {color:background};
  265. background-image: url({image:Background});
  266. background-attachment: fixed;
  267. background-repeat:no-repeat;
  268. margin-bottom: 0;
  269. word-wrap: break-word;
  270. position:fixed;
  271. font-family: 'Roboto Condensed', sans-serif;
  272. font-size:11px;
  273. color:{color:text};
  274. overflow-y:hidden;
  275. font-family:arial;
  276. }
  277. a {
  278. text-decoration:none;
  279. text-transform: uppercase;
  280. font-family: 'Roboto Slab', serif;
  281. color:{color:links};
  282. border-bottom:0px solid {color:links hover shadow};
  283. }
  284.  
  285. a:hover { color: #fff;
  286. color: {color:link hover};
  287. -moz-transition-duration: 0.5s;
  288. -o-transition-duration: 0.5s;
  289. -webkit-transition-duration: 0.5s;
  290. transition-duration: 0.5s;
  291. text-shadow: #2f2f2f 0 0 5px;
  292. text-decoration:none;
  293.  
  294. }
  295.  
  296. b, strong {
  297. color: {color:bold};
  298. font-family: 'Oswald', sans-serif;
  299. font-size: 10px;
  300. font-weight: bold;
  301. text-shadow: 0 0 0.3em #000;
  302. text-transform: uppercase;
  303. }
  304.  
  305.  
  306. i, em {
  307. color: {color:italic};
  308. font-family: 'Oswald', sans-serif;
  309. font-weight: italic;
  310. text-shadow: 0 0 0.3em #000;
  311. text-transform: none;
  312. }
  313.  
  314. h1 {
  315. font-size: 22px;
  316. color: {color:Title};
  317. font-family: 'Montserrat', sans-serif;
  318. letter-spacing:-0.5px;
  319. text-transform: uppercase;
  320. font-weight:bold;
  321. padding:5px;
  322. padding-bottom:2px;
  323.  
  324. }
  325.  
  326. h2 {
  327. font-size:12px;
  328. text-align:center;
  329. line-height:100%;
  330. letter-spacing:-0.5px;
  331. color:{color:text};
  332. font-weight:bold;
  333. text-transform:uppercase;
  334. padding:5px;
  335. padding-bottom:2px;
  336. }
  337.  
  338. h3 {
  339. font-size:12px;
  340. text-align:left;
  341. line-height:100%;
  342. letter-spacing:-0.5px;
  343. color:{color:title};
  344. font-weight:bold;
  345. text-transform:uppercase;
  346. padding:5px;
  347. padding-bottom:2px;
  348. }
  349.  
  350. .po img a:hover {
  351. background-color:transparent;
  352. }
  353. .po img:hover{
  354. background-color:transparent;
  355. }
  356.  
  357. table {
  358. font-size:10px;
  359. }
  360.  
  361. #credit{
  362. bottom:5px;
  363. right:5px;
  364. position:fixed;
  365. background-color:rgba(255,255,255,0.6);
  366. }
  367.  
  368. #si {
  369. position:fixed;
  370. margin:130px;
  371. text-align:right;
  372. width:100px;
  373. }
  374.  
  375. #ti {
  376. display:none;
  377. font-family: 'Fjalla One', sans-serif;
  378. text-transform: uppercase;
  379. position:fixed;
  380. font-size:30px;
  381. opacity: 0.8;
  382. font-weight:bold;
  383. width:350px;
  384. text-align:center;
  385. -webkit-transition: all 0.3s ease;
  386. -moz-transition: all 0.3s ease;
  387. -o-transition: all 0.3s ease;
  388. }
  389. #ti:hover{
  390. color:#000;
  391. }
  392. #tti {
  393. position:fixed;
  394. top:70px;
  395. left:180px;
  396.  
  397. }
  398. #des {
  399. width:400px;
  400. text-align:left;
  401. font-size: 10px;
  402. top: 20px;
  403. padding: 10px;
  404.  
  405. }
  406.  
  407. /*posts*/
  408.  
  409. #ens {
  410. position:fixed;
  411. left:690px;
  412. top:220px;
  413. height:40%;
  414. width:500px;
  415. overflow-y:scroll;
  416. background-color:transparent;
  417. padding:20px;
  418. }
  419. .po {
  420. margin-bottom:80px;
  421. padding:10px;
  422. position:;
  423. background-color:transparent;
  424. -webkit-transition: all 0.3s ease;
  425. -moz-transition: all 0.3s ease;
  426. -o-transition: all 0.3s ease;
  427. }
  428.  
  429.  
  430.  
  431.  
  432. #lis {
  433. margin-left:380px;
  434. margin-top:310px;
  435. font-size: 20px;
  436. width: 400px;
  437. letter-spacing: 20px;
  438. color: {color:lis};
  439. }
  440.  
  441.  
  442.  
  443. #info {
  444. margin-top:5px;
  445. margin-bottom:5px;
  446. text-align:center;
  447. width:500px;
  448. margin-left:-10px;
  449. height:15px;
  450. background-image: url({image:info});
  451. border: 1px; color: #fff;
  452. font-size: 9px;
  453.  
  454.  
  455. }
  456.  
  457.  
  458. #info a{
  459. margin-right:5px;
  460. }
  461.  
  462.  
  463.  
  464. .tags {
  465.  
  466. width: 500px;
  467. color:{color:tags};
  468. font-family: 'Roboto', sans-serif;
  469. text-align:left;
  470. text-transform: lowercase;
  471. margin-top:5px;
  472. padding-top:5px;
  473. padding-bottom:5px;
  474. font-size:7px;
  475.  
  476.  
  477.  
  478. }
  479.  
  480. .tags a {
  481. text-transform: none;
  482.  
  483. }
  484.  
  485. .tags a:hover {
  486. color:{color:links hover};
  487. text-decoration: none;
  488.  
  489. }
  490.  
  491. /*extra*/
  492. /*#acc {
  493. color:#000;
  494. font-size:9px;
  495. padding:3px;
  496. opacity:0;
  497. }
  498. #lis a:hover #acc {
  499. opacity:1;
  500. }*/
  501.  
  502. /*asks*/
  503. .question {
  504. border:1px solid {color:text};
  505. padding:10px;
  506. }
  507. .asker {
  508. font-weight:bold;
  509. }
  510.  
  511. /*text post*/
  512. #title {
  513. font-size: 18px;
  514. color: {color:Title};
  515. font-family: 'Montserrat', sans-serif;
  516. letter-spacing:-0.5px;
  517. text-transform: uppercase;
  518. font-weight:bold;
  519. padding:5px;
  520. padding-bottom:2px;
  521. }
  522.  
  523. /*chat*/
  524. .chat ol {
  525. list-style-type:none;
  526. margin-left:-35px;
  527. }
  528. .chat ol li {
  529. border-bottom:1px solid #eee;
  530. padding-bottom:5px;
  531. padding-top:5px;
  532. }
  533.  
  534. /*quotes*/
  535. .quote {
  536. font-style:italic;
  537. font-size:12px;
  538. }
  539. .source {
  540. text-align:right;
  541. color:#888;
  542. }
  543.  
  544. .newplayerbutton {
  545. position: relative;
  546. width: 28px;
  547. height: 27px;
  548. overflow: hidden;
  549. }
  550.  
  551. .playerbuttonhug {
  552. position: absolute;
  553. top: -11px;
  554. left: -12px;
  555. }
  556.  
  557.  
  558. .tumblr_audio_player {
  559. border: none;
  560. padding: 0px;
  561. margin: 0px;
  562. height: 50px;
  563. width: 500px;
  564. }
  565.  
  566. .playerbuttonbg {
  567. position: absolute;
  568. left: 20px;
  569. top: 20px;
  570. width: 28px;
  571. height: 28px;
  572. background-color: #ffffff;
  573. padding: 10px;
  574. -webkit-border-radius: 40px;
  575. -moz-border-radius: 40px;
  576. border-radius: 40px;
  577. opacity: .4;
  578. filter: alpha(opacity=40);
  579. -moz-opacity: 0.4;
  580. -khtml-opacity: 0.4;
  581. transition: opacity .7s ease-in-out;
  582. -moz-transition: opacity .7s ease-in-out;
  583. -webkit-transition: opacity .7s ease-in-out;
  584. }
  585.  
  586. .playerbuttonbg:hover {
  587. opacity: 1;
  588. filter: alpha(opacity=100);
  589. -moz-opacity: 1;
  590. -khtml-opacity: 1;
  591. }
  592.  
  593. .audioimgwrapper {
  594. position: absolute;
  595. left: 0px;
  596. top: 0px;
  597. -webkit-border-radius: 50px;
  598. -moz-border-radius: 50px;
  599. border-radius: 50px;
  600. overflow: hidden;
  601. width: 88px;
  602. height: 88px;
  603. }
  604.  
  605. .audioimgwrapper img {
  606. width: 100%;
  607. height: auto;
  608. -webkit-border-radius: 50px;
  609. -moz-border-radius: 50px;
  610. border-radius: 50px;
  611. }
  612.  
  613. .trackdetails {
  614. width: auto;
  615. display:inline-block;
  616. margin-left: 100px;
  617. min-height: 85px;
  618. }
  619.  
  620. .audiowrapper {
  621. position: relative;
  622. display:inline-block;
  623. }
  624.  
  625. blockquote {
  626. border-left: 3px solid #fff;
  627. margin-left: 6px;
  628. padding-left: 10px;
  629. }
  630.  
  631. /*post width*/
  632. iframe, img, embed, object, video {
  633. max-width: 100%;
  634. border: none;
  635. }
  636.  
  637. .pagenotes {
  638. padding: 15px;
  639. }
  640.  
  641.  
  642. </style>
  643. </head>
  644. <body>
  645. <div id="credit"><a title="theme by gasoln" href="http://gasoln.tumblr.com">.thm</a></div>
  646.  
  647. <div id="tti"><div id="ti">{title}</div><br><br><br>
  648.  
  649.  
  650. </div>
  651.  
  652. <div class="showhim">
  653. HOVER
  654. <div class="showme">Indie Trish Walker.<p> Selective, semi-private. <p>
  655.  
  656. Written by b. </div>
  657.  
  658. </div>
  659.  
  660. <div id="si">
  661.  
  662.  
  663. <div id="lis">
  664. <div id="des"></div>
  665. <a href="{text:Link 1 URL}" title="{text:Link 1}">&#9679;</a><a href="#?w=350" rel="ask" class="poplight" title="{text:Link 2}">&#9679;</a><a href="#?w=350" rel="02" class="poplight" title="{text:Link 3}">&#9679;</a><a href="#?w=350" rel="03" class="poplight" title="{text:Link 4}">&#9679;</a><a href="#?w=350" rel="04" class="poplight" title="{text:Link 5}">&#9679;</a>
  666. </links>
  667. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page">&#8592;</a><br>{/block:PreviousPage}
  668. {block:NextPage}<a href="{NextPage}" class="jump_page">&#8594;</a>{/block:NextPage}
  669. </div>
  670. </div>
  671.  
  672. <div id="ens">
  673.  
  674. {block:Posts}
  675.  
  676.  
  677. <div class="po">
  678.  
  679.  
  680. {block:Quote}
  681. <div class="quote">"{Quote}"</div>
  682. {block:Source}<div class="source">&mdash; {Source}</div>{/block:Source}
  683. {/block:Quote}
  684.  
  685. {block:Text}
  686. {block:Title}
  687. <div id="title">{Title}</div>{/block:Title}
  688. {Body}
  689. {/block:Text}
  690.  
  691. {block:Link}
  692. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  693. {/block:Link}
  694.  
  695. {block:Chat}
  696. {block:Title}
  697. <h1>{Title}</h1>
  698. {/block:Title}
  699. <div class="chat">
  700. <ol>{block:Lines}
  701. <li class="line {Alt}">
  702. {block:Label}
  703. <span class="label">
  704. {Label}</span>
  705. {/block:Label}{Line}</li>
  706. {/block:Lines}
  707. </ol></div>
  708. {/block:Chat}
  709.  
  710. {block:Photo}
  711. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}">{LinkCloseTag}
  712.  
  713.  
  714. {/block:Photo}
  715.  
  716. {block:Photoset}
  717. {Photoset-500}
  718.  
  719. {/block:Photoset}
  720.  
  721.  
  722. {block:Video}
  723. {Video-500}
  724. {/block:Video}
  725.  
  726. {block:audio}
  727. {block:AudioPlayer}
  728. <div class="audiowrapper">
  729. {block:AlbumArt}
  730. <div class="audioimgwrapper"><img src="{AlbumArtURL}"></div>
  731. {/block:AlbumArt}
  732.  
  733. <div class="playerbuttonbg">
  734. <div class="newplayerbutton">
  735. <div class="playerbuttonhug">
  736.  
  737. {AudioPlayerWhite}
  738.  
  739. </div>
  740. </div>
  741. </div>
  742.  
  743. <div class="trackdetails">
  744.  
  745. {block:TrackName}{TrackName}{/block:TrackName}<br/>
  746. {block:Artist}Artist: {Artist}{/block:Artist}<br/>
  747. {block:Album}Album: {Album}{/block:Album}<br/>
  748. {PlayCountWithLabel}
  749.  
  750. </div>
  751. </div>
  752. {/block:AudioPlayer}{block:AudioEmbed}{AudioEmbed-500} {/block:AudioEmbed}
  753.  
  754. {/block:audio}
  755.  
  756. {block:Answer}
  757. <div class="question">
  758. <div class="asker">{Asker} said: </div>
  759. {Question}</div>
  760. <div class="answer">{Answer}</div>
  761. {/block:Answer}
  762.  
  763. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  764.  
  765. {block:Date}<div id="info"><a href="{Permalink}" title="{TimeAgo}">&#9734;</a>{/block:Date}
  766. {block:NoteCount} <a href="{Permalink}" title="{NoteCountWithLabel}">&#9734;</a>{/block:NoteCount}</a>{block:RebloggedFrom}<a href="{Permalink}"><a title="{ReblogParentName}" href="{ReblogParentURL}">&#9734;</a> {/block:RebloggedFrom}{block:ContentSource} <a title="{SourceTitle}"href="{SourceURL}">&#9734;</a>{/block:ContentSource} {/block:RebloggedFrom}
  767. </div>
  768.  
  769. {block:HasTags}
  770. <div class="tags">
  771. {block:Tags} <a href="{TagURL}">X{Tag}</a> {/block:Tags}</div>
  772. {/block:HasTags}
  773. <div class="postnote">
  774. {block:PostNotes}{PostNotes}{/block:PostNotes}</div></div>
  775.  
  776.  
  777.  
  778. {/block:Posts}
  779. </div>
  780.  
  781.  
  782. </body>
  783.  
  784. <div id="ask" class="popup_block">
  785. <div id="titlea">Ask</div>
  786.  
  787. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/purplesnotmycolor.tumblr.com" width="100%"></iframe></p></center>
  788. </div>
  789.  
  790. <div id="02" class="popup_block" height="350">
  791. <div id="wrap">
  792. <center>
  793. <div id="titlea">about</div>
  794. <div id="texta">
  795.  
  796. about here
  797. </div>
  798.  
  799. </div>
  800. </div>
  801.  
  802. <div id="03" class="popup_block">
  803. <div id="wrap">
  804. <center>
  805. <div id="titlea">rules</div>
  806. <div id="texta">
  807.  
  808. rules here
  809.  
  810.  
  811. </div>
  812. </div>
  813.  
  814. </div>
  815. </div>
  816.  
  817.  
  818. <div id="04" class="popup_block">
  819. <div id="nav">
  820. <div id="titlea">navigation</div>
  821.  
  822. <a href="/about">about</a> &#8229;
  823. links here
  824.  
  825.  
  826. </div>
  827. </div>
  828.  
  829. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement