Difference between revisions of "Main Page"

From dbgroup
Jump to: navigation, search
Line 1: Line 1:
{{DISPLAYTITLE:首页}}
+
<!DOCTYPE html>
------------------------------------
+
<html lang="en">
<big><big><font color=red>'''欢迎加入TJUDB课题组!'''</font></big></big>
+
<head>
------------------------------------
+
    <meta charset="UTF-8">
'''<big>课题组成员:</big>'''
+
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
        '''[[Teachers|教师]]'''
+
    <title>TJUDB课题组主页</title>
        '''[[Students|研究生]]'''
+
    <style>
----------------------------------------
+
        body {
'''<big>新闻</big>'''
+
            font-family: Arial, sans-serif;
* 祝贺董思聪同学论文被数据库顶级会议、CCF A类国际会议ICDE2022录用!
+
            margin: 0;
* 祝贺李钊、刘鑫同学论文被CCF B类期刊WWWJ录用!
+
            padding: 0;
* 王鑫老师的综述论文“知识图谱数据管理研究综述”被软件学报录用!
+
            background-color: #f0f8ff; /* 整体背景为淡蓝色 */
* 王鑫老师Tutorial“Knowledge Graph Data Management”被CCF B类国际学术会议DASFAA2019接受!
+
            color: #333;
* 祝贺傅强同学Demo论文被CCF B类国际学术会议DASFAA2019录用!
+
        }
'''<font color=red>'''[http://www.tjudb.cn/apwebwaim2020/ WELCOME TO APWeb-WAIM 2020!]'''</font>
+
        .header {
 
+
            background-color: #4682b4; /* 深蓝色头部背景 */
<font color=blue>'''[http://www.tjudb.cn/apwebwaim2020/node/1 Call For Papers]'''</font>'''
+
            color: white;
------------
+
            padding: 20px;
 +
            text-align: center;
 +
            font-size: 24px;
 +
        }
 +
        .container {
 +
            width: 80%;
 +
            margin: 20px auto;
 +
        }
 +
        .welcome {
 +
            text-align: center;
 +
            font-size: 20px;
 +
            color: #ff0000; /* 红色欢迎语 */
 +
        }
 +
        .members, .news {
 +
            margin-bottom: 20px;
 +
        }
 +
        .members h2, .news h2 {
 +
            color: #4682b4; /* 深蓝色标题 */
 +
            border-bottom: 2px solid #4682b4;
 +
            padding-bottom: 10px;
 +
        }
 +
        .news ul {
 +
            list-style-type: none;
 +
            padding: 0;
 +
        }
 +
        .news ul li {
 +
            margin-bottom: 10px;
 +
        }
 +
        .news a {
 +
            color: #4682b4; /* 深蓝色链接 */
 +
            text-decoration: none;
 +
        }
 +
        .news a:hover {
 +
            text-decoration: underline;
 +
        }
 +
        .image-container {
 +
            text-align: center;
 +
            margin-bottom: 20px;
 +
        }
 +
        .image-container img {
 +
            max-width: 100%;
 +
            height: auto;
 +
        }
 +
    </style>
 +
</head>
 +
<body>
 +
    <div class="header">
 +
        欢迎加入TJUDB课题组!
 +
    </div>
 +
    <div class="container">
 +
        <div class="welcome">
 +
            <big><big>欢迎加入TJUDB课题组!</big></big>
 +
        </div>
 +
        <div class="members">
 +
            <h2>课题组成员:</h2>
 +
            <ul>
 +
                <li><a href="[[Teachers]]">教师</a></li>
 +
                <li><a href="[[Students]]">研究生</a></li>
 +
            </ul>
 +
        </div>
 +
        <div class="news">
 +
            <h2>新闻</h2>
 +
            <ul>
 +
                <li>祝贺董思聪同学论文被数据库顶级会议、CCF A类国际会议ICDE2022录用!</li>
 +
                <li>祝贺李钊、刘鑫同学论文被CCF B类期刊WWWJ录用!</li>
 +
                <li>王鑫老师的综述论文“知识图谱数据管理研究综述”被软件学报录用!</li>
 +
                <li>王鑫老师Tutorial“Knowledge Graph Data Management”被CCF B类国际学术会议DASFAA2019接受!</li>
 +
                <li>祝贺傅强同学Demo论文被CCF B类国际学术会议DASFAA2019录用!</li>
 +
                <li><a href="http://www.tjudb.cn/apwebwaim2020/">WELCOME TO APWeb-WAIM 2020!</a></li>
 +
                <li><a href="http://www.tjudb.cn/apwebwaim2020/node/1">Call For Papers</a></li>
 +
            </ul>
 +
        </div>
 +
        <div class="image-container">
 +
            <img src="your-image-path.jpg" alt="TJUDB课题组">
 +
        </div>
 +
    </div>
 +
</body>
 +
</html>
 
<!-- 以下均为注释
 
<!-- 以下均为注释
 
<strong>[http://dbgroup.tju.edu.cn/view/%E5%BC%A0%E4%B8%89  (样例)创建张三的主页]</strong>
 
<strong>[http://dbgroup.tju.edu.cn/view/%E5%BC%A0%E4%B8%89  (样例)创建张三的主页]</strong>

Revision as of 09:06, 1 July 2025

<!DOCTYPE html> <html lang="en"> <head>

   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>TJUDB课题组主页</title>
   <style>
       body {
           font-family: Arial, sans-serif;
           margin: 0;
           padding: 0;
           background-color: #f0f8ff; /* 整体背景为淡蓝色 */
           color: #333;
       }
       .header {
           background-color: #4682b4; /* 深蓝色头部背景 */
           color: white;
           padding: 20px;
           text-align: center;
           font-size: 24px;
       }
       .container {
           width: 80%;
           margin: 20px auto;
       }
       .welcome {
           text-align: center;
           font-size: 20px;
           color: #ff0000; /* 红色欢迎语 */
       }
       .members, .news {
           margin-bottom: 20px;
       }
       .members h2, .news h2 {
           color: #4682b4; /* 深蓝色标题 */
           border-bottom: 2px solid #4682b4;
           padding-bottom: 10px;
       }
       .news ul {
           list-style-type: none;
           padding: 0;
       }
       .news ul li {
           margin-bottom: 10px;
       }
       .news a {
           color: #4682b4; /* 深蓝色链接 */
           text-decoration: none;
       }
       .news a:hover {
           text-decoration: underline;
       }
       .image-container {
           text-align: center;
           margin-bottom: 20px;
       }
       .image-container img {
           max-width: 100%;
           height: auto;
       }
   </style>

</head> <body>

       欢迎加入TJUDB课题组!
           欢迎加入TJUDB课题组!

课题组成员:

新闻

  • 祝贺董思聪同学论文被数据库顶级会议、CCF A类国际会议ICDE2022录用!
  • 祝贺李钊、刘鑫同学论文被CCF B类期刊WWWJ录用!
  • 王鑫老师的综述论文“知识图谱数据管理研究综述”被软件学报录用!
  • 王鑫老师Tutorial“Knowledge Graph Data Management”被CCF B类国际学术会议DASFAA2019接受!
  • 祝贺傅强同学Demo论文被CCF B类国际学术会议DASFAA2019录用!
  • <a href="http://www.tjudb.cn/apwebwaim2020/">WELCOME TO APWeb-WAIM 2020!</a>
  • <a href="http://www.tjudb.cn/apwebwaim2020/node/1">Call For Papers</a>
           <img src="your-image-path.jpg" alt="TJUDB课题组">

</body> </html>