font.html 450 字节
Newer Older
梦想橡皮擦's avatar
梦想橡皮擦 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
{% extends "base.html" %}
{% block style %}

<style>
    @font-face {
        font-family: 'ca-font';
        src: url('{{url_for("static",filename="font/ca_font.woff")}}');
    }
    .stonefont {
          font-family: ca-font;
          font-size:16px;
    }

</style>
{% endblock style %}
{% block link %}

{% endblock link %}

{% block content %}
<div class="container">

   <span class="stonefont"> {{new_num_str}}</span>

</div>

{% endblock %}