You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
910 B

3 years ago
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="container-fluid">
  4. <div class="row">
  5. <h1> School </h1>
  6. </div>
  7. <div class="row">
  8. <div class="col-md-5 m-1">
  9. <p>
  10. I currently attend Stanford Online High School full-time, where I
  11. participate in the following activities:<br>
  12. <ol>
  13. <li> TA of the AP Calculus BC Class </li>
  14. <li> Leader of the OHS Competitive Programming Circle </li>
  15. <li> Participant in the OHS Math Competition Homeroom and the
  16. OHS Chemistry Olympiad Club </li>
  17. </ol>
  18. </p>
  19. </div>
  20. <div class="col-md-5 m-1">
  21. <img
  22. src="{{url_for('static', filename='images/pixel.png')}}"
  23. style="width:200px;height:200px;"
  24. ></img>
  25. </div>
  26. </div>
  27. </div>
  28. {% endblock %}