1. <!doctype html>
  2. <html lang="zh-CN">
  3. <head>
  4. <title>About Me</title>
  5. </head>
  6. <body>
  7. <div class="container">
  8. <div class="title">About Me</div>
  9. <img class="avatar" src="logo.jpg" alt="me"/>
  10. <h2>I Am In ChangSha Now</h2>
  11. <canvas id="canvas"></canvas>
  12. <footer>
  13. <a href="http://luckyw.cn"><i class="fa fa-home"></i>Index</a>
  14. <a href="https://github.com/leoyaojy"><i class="fa fa-github"></i>Github</a>
  15. <a href="http://demo.luckyw.cn"><i class="fa fa-th-large"></i>Demo</a>
  16. </footer>
  17. </div>
  18. </body>
  19. <script>
  20. var About = {
  21. Contact:function(){
  22. var Me = {};
  23. Me.QQ = 1543639878;
  24. Me.Email = luckywgm@gmail.com;
  25. return Me;
  26. };
  27. };
  28. </script>
  29. </html>