From b6e4b021156c4d76bad9bd33d2ba72cb2ef66ccc Mon Sep 17 00:00:00 2001 From: QI_N_QIGT <1515035714@qq.com> Date: Sat, 21 Sep 2024 00:12:14 +0800 Subject: [PATCH] add publication html and css --- 4-publication.html | 54 +++++++++++++++++++++++++ css/styles.css | 99 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 153 insertions(+) create mode 100644 4-publication.html create mode 100644 css/styles.css diff --git a/4-publication.html b/4-publication.html new file mode 100644 index 00000000000..accc6b91f26 --- /dev/null +++ b/4-publication.html @@ -0,0 +1,54 @@ + + + + + + Profile Page + + + +
+
+
+ Profile Image +
+

Fengbin Tu

+

Ph.D. in Electronic Science and Technology, THU

+ +
+
+

Selected Publications

+
+

Books

+ +
+
+

Survey Articles

+ +
+
+

Journal Papers

+ +
+
+
+ + + diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 00000000000..943513cb46c --- /dev/null +++ b/css/styles.css @@ -0,0 +1,99 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: flex-start; + background-color: #f8f9fa; +} + +.container { + display: flex; + max-width: 1200px; + margin: 20px; + padding: 20px; + background-color: white; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +.profile { + width: 30%; + padding: 20px; + border-right: 1px solid #ddd; +} + +.profile-image img { + width: 100%; + border-radius: 50%; +} + +.profile h2 { + margin-top: 20px; + font-size: 1.5em; +} + +.profile p { + color: gray; +} + +.contact-info { + list-style: none; + padding: 0; +} + +.contact-info li { + margin: 10px 0; + display: flex; + align-items: center; +} + +.contact-info li i { + margin-right: 10px; +} + +.contact-info li a { + color: #007bff; + text-decoration: none; +} + +.contact-info li a:hover { + text-decoration: underline; +} + +.publications { + width: 70%; + padding: 20px; +} + +.publications h2 { + font-size: 2em; + margin-bottom: 20px; +} + +.publication-section { + margin-bottom: 20px; +} + +.publication-section h3 { + font-size: 1.5em; + margin-bottom: 10px; +} + +.publication-section ul { + list-style: none; + padding: 0; +} + +.publication-section ul li { + margin-bottom: 10px; +} + +.publication-section ul li a { + color: #007bff; + text-decoration: none; +} + +.publication-section ul li a:hover { + text-decoration: underline; +}